HEX
Server: nginx/1.18.0
System: Linux m1-ws1-ams3 5.4.0-148-generic #165-Ubuntu SMP Tue Apr 18 08:53:12 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /opt/aphex/sites/genomevalley.org/db.sql
-- MySQL dump 10.13  Distrib 8.0.32, for Linux (x86_64)
--
-- Host: localhost    Database: genomevalley_org
-- ------------------------------------------------------
-- Server version	8.0.32-0ubuntu0.20.04.2

/*!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 */;
/*!50503 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 */;

--
-- Table structure for table `wp_commentmeta`
--

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

--
-- Dumping data for table `wp_commentmeta`
--

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

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) CHARACTER SET utf8mb4 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 CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint unsigned NOT NULL DEFAULT '0',
  `user_id` bigint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

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

--
-- Table structure for table `wp_links`
--

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

--
-- Dumping data for table `wp_links`
--

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

--
-- Table structure for table `wp_nf3_action_meta`
--

DROP TABLE IF EXISTS `wp_nf3_action_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_action_meta` (
  `id` int NOT NULL AUTO_INCREMENT,
  `parent_id` int NOT NULL,
  `key` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `value` longtext COLLATE utf8mb4_unicode_520_ci,
  `meta_key` longtext COLLATE utf8mb4_unicode_520_ci,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=197 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_action_meta`
--

LOCK TABLES `wp_nf3_action_meta` WRITE;
/*!40000 ALTER TABLE `wp_nf3_action_meta` DISABLE KEYS */;
INSERT INTO `wp_nf3_action_meta` VALUES (1,1,'objectType','Action','objectType','Action'),(2,1,'objectDomain','actions','objectDomain','actions'),(3,1,'editActive','','editActive',''),(4,1,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(5,1,'payment_gateways','','payment_gateways',''),(6,1,'payment_total','','payment_total',''),(7,1,'tag','','tag',''),(8,1,'to','{wp:admin_email}','to','{wp:admin_email}'),(9,1,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(10,1,'email_message','{fields_table}','email_message','{fields_table}'),(11,1,'from_name','','from_name',''),(12,1,'from_address','','from_address',''),(13,1,'reply_to','','reply_to',''),(14,1,'email_format','html','email_format','html'),(15,1,'cc','','cc',''),(16,1,'bcc','','bcc',''),(17,1,'attach_csv','','attach_csv',''),(18,1,'redirect_url','','redirect_url',''),(19,1,'email_message_plain','','email_message_plain',''),(20,2,'to','{field:email}','to','{field:email}'),(21,2,'subject','This is an email action.','subject','This is an email action.'),(22,2,'message','Hello, Ninja Forms!','message','Hello, Ninja Forms!'),(23,2,'objectType','Action','objectType','Action'),(24,2,'objectDomain','actions','objectDomain','actions'),(25,2,'editActive','','editActive',''),(26,2,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(27,2,'payment_gateways','','payment_gateways',''),(28,2,'payment_total','','payment_total',''),(29,2,'tag','','tag',''),(30,2,'email_subject','Submission Confirmation ','email_subject','Submission Confirmation '),(31,2,'email_message','<p>{all_fields_table}<br></p>','email_message','<p>{all_fields_table}<br></p>'),(32,2,'from_name','','from_name',''),(33,2,'from_address','','from_address',''),(34,2,'reply_to','','reply_to',''),(35,2,'email_format','html','email_format','html'),(36,2,'cc','','cc',''),(37,2,'bcc','','bcc',''),(38,2,'attach_csv','','attach_csv',''),(39,2,'email_message_plain','','email_message_plain',''),(40,3,'objectType','Action','objectType','Action'),(41,3,'objectDomain','actions','objectDomain','actions'),(42,3,'editActive','','editActive',''),(43,3,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(44,3,'payment_gateways','','payment_gateways',''),(45,3,'payment_total','','payment_total',''),(46,3,'tag','','tag',''),(47,3,'to','{system:admin_email}','to','{system:admin_email}'),(48,3,'email_subject','New message from {field:name}','email_subject','New message from {field:name}'),(49,3,'email_message','<p>{field:message}</p><p>-{field:name} ( {field:email} )</p>','email_message','<p>{field:message}</p><p>-{field:name} ( {field:email} )</p>'),(50,3,'from_name','','from_name',''),(51,3,'from_address','','from_address',''),(52,3,'reply_to','{field:email}','reply_to','{field:email}'),(53,3,'email_format','html','email_format','html'),(54,3,'cc','','cc',''),(55,3,'bcc','','bcc',''),(56,3,'attach_csv','0','attach_csv','0'),(57,3,'email_message_plain','','email_message_plain',''),(58,4,'message','Thank you {field:name} for filling out my form!','message','Thank you {field:name} for filling out my form!'),(59,4,'objectType','Action','objectType','Action'),(60,4,'objectDomain','actions','objectDomain','actions'),(61,4,'editActive','','editActive',''),(62,4,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(63,4,'payment_gateways','','payment_gateways',''),(64,4,'payment_total','','payment_total',''),(65,4,'tag','','tag',''),(66,4,'to','{wp:admin_email}','to','{wp:admin_email}'),(67,4,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(68,4,'email_message','{fields_table}','email_message','{fields_table}'),(69,4,'from_name','','from_name',''),(70,4,'from_address','','from_address',''),(71,4,'reply_to','','reply_to',''),(72,4,'email_format','html','email_format','html'),(73,4,'cc','','cc',''),(74,4,'bcc','','bcc',''),(75,4,'attach_csv','','attach_csv',''),(76,4,'redirect_url','','redirect_url',''),(77,4,'success_msg','<p>Form submitted successfully.</p><p>A confirmation email was sent to {field:email}.</p>','success_msg','<p>Form submitted successfully.</p><p>A confirmation email was sent to {field:email}.</p>'),(78,4,'email_message_plain','','email_message_plain',''),(79,1,'success_msg','Your form has been successfully submitted.','success_msg','Your form has been successfully submitted.'),(80,1,'submitter_email','','submitter_email',''),(81,1,'fields-save-toggle','save_all','fields-save-toggle','save_all'),(82,1,'exception_fields','a:0:{}','exception_fields','a:0:{}'),(83,1,'set_subs_to_expire','0','set_subs_to_expire','0'),(84,1,'subs_expire_time','90','subs_expire_time','90'),(85,5,'title','','title',''),(86,5,'key','','key',''),(87,5,'type','save','type','save'),(88,5,'active','1','active','1'),(89,5,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(90,5,'label','Store Submission','label','Store Submission'),(91,5,'objectType','Action','objectType','Action'),(92,5,'objectDomain','actions','objectDomain','actions'),(93,5,'editActive','','editActive',''),(94,5,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(95,5,'payment_gateways','','payment_gateways',''),(96,5,'payment_total','','payment_total',''),(97,5,'tag','','tag',''),(98,5,'to','{wp:admin_email}','to','{wp:admin_email}'),(99,5,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(100,5,'email_message','{fields_table}','email_message','{fields_table}'),(101,5,'from_name','','from_name',''),(102,5,'from_address','','from_address',''),(103,5,'reply_to','','reply_to',''),(104,5,'email_format','html','email_format','html'),(105,5,'cc','','cc',''),(106,5,'bcc','','bcc',''),(107,5,'attach_csv','','attach_csv',''),(108,5,'redirect_url','','redirect_url',''),(109,5,'email_message_plain','','email_message_plain',''),(110,5,'parent_id','2','parent_id','2'),(111,6,'title','','title',''),(112,6,'key','','key',''),(113,6,'type','email','type','email'),(114,6,'active','1','active','1'),(115,6,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(116,6,'label','Email Confirmation','label','Email Confirmation'),(117,6,'to','{field:email}','to','{field:email}'),(118,6,'subject','This is an email action.','subject','This is an email action.'),(119,6,'message','Hello, Ninja Forms!','message','Hello, Ninja Forms!'),(120,6,'objectType','Action','objectType','Action'),(121,6,'objectDomain','actions','objectDomain','actions'),(122,6,'editActive','','editActive',''),(123,6,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(124,6,'payment_gateways','','payment_gateways',''),(125,6,'payment_total','','payment_total',''),(126,6,'tag','','tag',''),(127,6,'email_subject','Submission Confirmation ','email_subject','Submission Confirmation '),(128,6,'email_message','<p>{all_fields_table}<br></p>','email_message','<p>{all_fields_table}<br></p>'),(129,6,'from_name','','from_name',''),(130,6,'from_address','','from_address',''),(131,6,'reply_to','','reply_to',''),(132,6,'email_format','html','email_format','html'),(133,6,'cc','','cc',''),(134,6,'bcc','','bcc',''),(135,6,'attach_csv','','attach_csv',''),(136,6,'email_message_plain','','email_message_plain',''),(137,6,'parent_id','2','parent_id','2'),(138,7,'title','','title',''),(139,7,'key','','key',''),(140,7,'type','email','type','email'),(141,7,'active','1','active','1'),(142,7,'created_at','2016-08-24 16:47:39','created_at','2016-08-24 16:47:39'),(143,7,'objectType','Action','objectType','Action'),(144,7,'objectDomain','actions','objectDomain','actions'),(145,7,'editActive','','editActive',''),(146,7,'label','Email Notification','label','Email Notification'),(147,7,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(148,7,'payment_gateways','','payment_gateways',''),(149,7,'payment_total','','payment_total',''),(150,7,'tag','','tag',''),(151,7,'to','{system:admin_email}','to','{system:admin_email}'),(152,7,'email_subject','New message from {field:name}','email_subject','New message from {field:name}'),(153,7,'email_message','<p></p><p>-{field:name} ( {field:email} )</p>','email_message','<p></p><p>-{field:name} ( {field:email} )</p>'),(154,7,'from_name','','from_name',''),(155,7,'from_address','','from_address',''),(156,7,'reply_to','{field:email}','reply_to','{field:email}'),(157,7,'email_format','html','email_format','html'),(158,7,'cc','','cc',''),(159,7,'bcc','','bcc',''),(160,7,'attach_csv','0','attach_csv','0'),(161,7,'email_message_plain','','email_message_plain',''),(162,7,'parent_id','2','parent_id','2'),(163,8,'title','','title',''),(164,8,'key','','key',''),(165,8,'type','successmessage','type','successmessage'),(166,8,'active','1','active','1'),(167,8,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(168,8,'label','Success Message','label','Success Message'),(169,8,'message','Thank you {field:name} for filling out my form!','message','Thank you {field:name} for filling out my form!'),(170,8,'objectType','Action','objectType','Action'),(171,8,'objectDomain','actions','objectDomain','actions'),(172,8,'editActive','','editActive',''),(173,8,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(174,8,'payment_gateways','','payment_gateways',''),(175,8,'payment_total','','payment_total',''),(176,8,'tag','','tag',''),(177,8,'to','{wp:admin_email}','to','{wp:admin_email}'),(178,8,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(179,8,'email_message','{fields_table}','email_message','{fields_table}'),(180,8,'from_name','','from_name',''),(181,8,'from_address','','from_address',''),(182,8,'reply_to','','reply_to',''),(183,8,'email_format','html','email_format','html'),(184,8,'cc','','cc',''),(185,8,'bcc','','bcc',''),(186,8,'attach_csv','','attach_csv',''),(187,8,'redirect_url','','redirect_url',''),(188,8,'success_msg','<p>Form submitted successfully.</p><p>A confirmation email was sent to {field:email}.</p>','success_msg','<p>Form submitted successfully.</p><p>A confirmation email was sent to {field:email}.</p>'),(189,8,'email_message_plain','','email_message_plain',''),(190,8,'parent_id','2','parent_id','2'),(191,5,'success_msg','Your form has been successfully submitted.','success_msg','Your form has been successfully submitted.'),(192,5,'submitter_email','','submitter_email',''),(193,5,'fields-save-toggle','save_all','fields-save-toggle','save_all'),(194,5,'exception_fields','a:0:{}','exception_fields','a:0:{}'),(195,5,'set_subs_to_expire','0','set_subs_to_expire','0'),(196,5,'subs_expire_time','90','subs_expire_time','90');
/*!40000 ALTER TABLE `wp_nf3_action_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf3_actions`
--

DROP TABLE IF EXISTS `wp_nf3_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_actions` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` longtext COLLATE utf8mb4_unicode_520_ci,
  `key` longtext COLLATE utf8mb4_unicode_520_ci,
  `type` longtext COLLATE utf8mb4_unicode_520_ci,
  `active` tinyint(1) DEFAULT '1',
  `parent_id` int NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  `label` longtext COLLATE utf8mb4_unicode_520_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_actions`
--

LOCK TABLES `wp_nf3_actions` WRITE;
/*!40000 ALTER TABLE `wp_nf3_actions` DISABLE KEYS */;
INSERT INTO `wp_nf3_actions` VALUES (1,'','','save',1,1,'2020-10-08 07:40:03','2020-10-08 07:40:03','Store Submission'),(2,'','','email',1,1,'2020-10-08 07:40:03','2020-10-08 07:40:03','Email Confirmation'),(3,'','','email',1,1,'2020-10-08 07:40:04','2020-10-08 07:40:04','Email Notification'),(4,'','','successmessage',1,1,'2020-10-08 07:40:04','2020-10-08 07:40:04','Success Message'),(5,'','','save',1,2,'2016-08-24 16:39:20',NULL,'Store Submission'),(6,'','','email',1,2,'2016-08-24 16:39:20',NULL,'Email Confirmation'),(7,'','','email',1,2,'2016-08-24 16:47:39',NULL,'Email Notification'),(8,'','','successmessage',1,2,'2016-08-24 16:39:20',NULL,'Success Message');
/*!40000 ALTER TABLE `wp_nf3_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf3_chunks`
--

DROP TABLE IF EXISTS `wp_nf3_chunks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_chunks` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `value` longtext COLLATE utf8mb4_unicode_520_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_chunks`
--

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

--
-- Table structure for table `wp_nf3_field_meta`
--

DROP TABLE IF EXISTS `wp_nf3_field_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_field_meta` (
  `id` int NOT NULL AUTO_INCREMENT,
  `parent_id` int NOT NULL,
  `key` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `value` longtext COLLATE utf8mb4_unicode_520_ci,
  `meta_key` longtext COLLATE utf8mb4_unicode_520_ci,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=560 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_field_meta`
--

LOCK TABLES `wp_nf3_field_meta` WRITE;
/*!40000 ALTER TABLE `wp_nf3_field_meta` DISABLE KEYS */;
INSERT INTO `wp_nf3_field_meta` VALUES (1,1,'label_pos','above','label_pos','above'),(2,1,'required','1','required','1'),(3,1,'order','1','order','1'),(4,1,'placeholder','','placeholder',''),(5,1,'default','','default',''),(6,1,'wrapper_class','','wrapper_class',''),(7,1,'element_class','','element_class',''),(8,1,'objectType','Field','objectType','Field'),(9,1,'objectDomain','fields','objectDomain','fields'),(10,1,'editActive','','editActive',''),(11,1,'container_class','','container_class',''),(12,1,'input_limit','','input_limit',''),(13,1,'input_limit_type','characters','input_limit_type','characters'),(14,1,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(15,1,'manual_key','','manual_key',''),(16,1,'disable_input','','disable_input',''),(17,1,'admin_label','','admin_label',''),(18,1,'help_text','','help_text',''),(19,1,'desc_text','','desc_text',''),(20,1,'disable_browser_autocomplete','','disable_browser_autocomplete',''),(21,1,'mask','','mask',''),(22,1,'custom_mask','','custom_mask',''),(23,1,'wrap_styles_background-color','','wrap_styles_background-color',''),(24,1,'wrap_styles_border','','wrap_styles_border',''),(25,1,'wrap_styles_border-style','','wrap_styles_border-style',''),(26,1,'wrap_styles_border-color','','wrap_styles_border-color',''),(27,1,'wrap_styles_color','','wrap_styles_color',''),(28,1,'wrap_styles_height','','wrap_styles_height',''),(29,1,'wrap_styles_width','','wrap_styles_width',''),(30,1,'wrap_styles_font-size','','wrap_styles_font-size',''),(31,1,'wrap_styles_margin','','wrap_styles_margin',''),(32,1,'wrap_styles_padding','','wrap_styles_padding',''),(33,1,'wrap_styles_display','','wrap_styles_display',''),(34,1,'wrap_styles_float','','wrap_styles_float',''),(35,1,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(36,1,'wrap_styles_advanced','','wrap_styles_advanced',''),(37,1,'label_styles_background-color','','label_styles_background-color',''),(38,1,'label_styles_border','','label_styles_border',''),(39,1,'label_styles_border-style','','label_styles_border-style',''),(40,1,'label_styles_border-color','','label_styles_border-color',''),(41,1,'label_styles_color','','label_styles_color',''),(42,1,'label_styles_height','','label_styles_height',''),(43,1,'label_styles_width','','label_styles_width',''),(44,1,'label_styles_font-size','','label_styles_font-size',''),(45,1,'label_styles_margin','','label_styles_margin',''),(46,1,'label_styles_padding','','label_styles_padding',''),(47,1,'label_styles_display','','label_styles_display',''),(48,1,'label_styles_float','','label_styles_float',''),(49,1,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(50,1,'label_styles_advanced','','label_styles_advanced',''),(51,1,'element_styles_background-color','','element_styles_background-color',''),(52,1,'element_styles_border','','element_styles_border',''),(53,1,'element_styles_border-style','','element_styles_border-style',''),(54,1,'element_styles_border-color','','element_styles_border-color',''),(55,1,'element_styles_color','','element_styles_color',''),(56,1,'element_styles_height','','element_styles_height',''),(57,1,'element_styles_width','','element_styles_width',''),(58,1,'element_styles_font-size','','element_styles_font-size',''),(59,1,'element_styles_margin','','element_styles_margin',''),(60,1,'element_styles_padding','','element_styles_padding',''),(61,1,'element_styles_display','','element_styles_display',''),(62,1,'element_styles_float','','element_styles_float',''),(63,1,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(64,1,'element_styles_advanced','','element_styles_advanced',''),(65,1,'cellcid','c3277','cellcid','c3277'),(66,2,'label_pos','above','label_pos','above'),(67,2,'required','1','required','1'),(68,2,'order','2','order','2'),(69,2,'placeholder','','placeholder',''),(70,2,'default','','default',''),(71,2,'wrapper_class','','wrapper_class',''),(72,2,'element_class','','element_class',''),(73,2,'objectType','Field','objectType','Field'),(74,2,'objectDomain','fields','objectDomain','fields'),(75,2,'editActive','','editActive',''),(76,2,'container_class','','container_class',''),(77,2,'admin_label','','admin_label',''),(78,2,'help_text','','help_text',''),(79,2,'desc_text','','desc_text',''),(80,2,'wrap_styles_background-color','','wrap_styles_background-color',''),(81,2,'wrap_styles_border','','wrap_styles_border',''),(82,2,'wrap_styles_border-style','','wrap_styles_border-style',''),(83,2,'wrap_styles_border-color','','wrap_styles_border-color',''),(84,2,'wrap_styles_color','','wrap_styles_color',''),(85,2,'wrap_styles_height','','wrap_styles_height',''),(86,2,'wrap_styles_width','','wrap_styles_width',''),(87,2,'wrap_styles_font-size','','wrap_styles_font-size',''),(88,2,'wrap_styles_margin','','wrap_styles_margin',''),(89,2,'wrap_styles_padding','','wrap_styles_padding',''),(90,2,'wrap_styles_display','','wrap_styles_display',''),(91,2,'wrap_styles_float','','wrap_styles_float',''),(92,2,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(93,2,'wrap_styles_advanced','','wrap_styles_advanced',''),(94,2,'label_styles_background-color','','label_styles_background-color',''),(95,2,'label_styles_border','','label_styles_border',''),(96,2,'label_styles_border-style','','label_styles_border-style',''),(97,2,'label_styles_border-color','','label_styles_border-color',''),(98,2,'label_styles_color','','label_styles_color',''),(99,2,'label_styles_height','','label_styles_height',''),(100,2,'label_styles_width','','label_styles_width',''),(101,2,'label_styles_font-size','','label_styles_font-size',''),(102,2,'label_styles_margin','','label_styles_margin',''),(103,2,'label_styles_padding','','label_styles_padding',''),(104,2,'label_styles_display','','label_styles_display',''),(105,2,'label_styles_float','','label_styles_float',''),(106,2,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(107,2,'label_styles_advanced','','label_styles_advanced',''),(108,2,'element_styles_background-color','','element_styles_background-color',''),(109,2,'element_styles_border','','element_styles_border',''),(110,2,'element_styles_border-style','','element_styles_border-style',''),(111,2,'element_styles_border-color','','element_styles_border-color',''),(112,2,'element_styles_color','','element_styles_color',''),(113,2,'element_styles_height','','element_styles_height',''),(114,2,'element_styles_width','','element_styles_width',''),(115,2,'element_styles_font-size','','element_styles_font-size',''),(116,2,'element_styles_margin','','element_styles_margin',''),(117,2,'element_styles_padding','','element_styles_padding',''),(118,2,'element_styles_display','','element_styles_display',''),(119,2,'element_styles_float','','element_styles_float',''),(120,2,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(121,2,'element_styles_advanced','','element_styles_advanced',''),(122,2,'cellcid','c3281','cellcid','c3281'),(123,3,'label_pos','above','label_pos','above'),(124,3,'required','1','required','1'),(125,3,'order','3','order','3'),(126,3,'placeholder','','placeholder',''),(127,3,'default','','default',''),(128,3,'wrapper_class','','wrapper_class',''),(129,3,'element_class','','element_class',''),(130,3,'objectType','Field','objectType','Field'),(131,3,'objectDomain','fields','objectDomain','fields'),(132,3,'editActive','','editActive',''),(133,3,'container_class','','container_class',''),(134,3,'input_limit','','input_limit',''),(135,3,'input_limit_type','characters','input_limit_type','characters'),(136,3,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(137,3,'manual_key','','manual_key',''),(138,3,'disable_input','','disable_input',''),(139,3,'admin_label','','admin_label',''),(140,3,'help_text','','help_text',''),(141,3,'desc_text','','desc_text',''),(142,3,'disable_browser_autocomplete','','disable_browser_autocomplete',''),(143,3,'textarea_rte','','textarea_rte',''),(144,3,'disable_rte_mobile','','disable_rte_mobile',''),(145,3,'textarea_media','','textarea_media',''),(146,3,'wrap_styles_background-color','','wrap_styles_background-color',''),(147,3,'wrap_styles_border','','wrap_styles_border',''),(148,3,'wrap_styles_border-style','','wrap_styles_border-style',''),(149,3,'wrap_styles_border-color','','wrap_styles_border-color',''),(150,3,'wrap_styles_color','','wrap_styles_color',''),(151,3,'wrap_styles_height','','wrap_styles_height',''),(152,3,'wrap_styles_width','','wrap_styles_width',''),(153,3,'wrap_styles_font-size','','wrap_styles_font-size',''),(154,3,'wrap_styles_margin','','wrap_styles_margin',''),(155,3,'wrap_styles_padding','','wrap_styles_padding',''),(156,3,'wrap_styles_display','','wrap_styles_display',''),(157,3,'wrap_styles_float','','wrap_styles_float',''),(158,3,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(159,3,'wrap_styles_advanced','','wrap_styles_advanced',''),(160,3,'label_styles_background-color','','label_styles_background-color',''),(161,3,'label_styles_border','','label_styles_border',''),(162,3,'label_styles_border-style','','label_styles_border-style',''),(163,3,'label_styles_border-color','','label_styles_border-color',''),(164,3,'label_styles_color','','label_styles_color',''),(165,3,'label_styles_height','','label_styles_height',''),(166,3,'label_styles_width','','label_styles_width',''),(167,3,'label_styles_font-size','','label_styles_font-size',''),(168,3,'label_styles_margin','','label_styles_margin',''),(169,3,'label_styles_padding','','label_styles_padding',''),(170,3,'label_styles_display','','label_styles_display',''),(171,3,'label_styles_float','','label_styles_float',''),(172,3,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(173,3,'label_styles_advanced','','label_styles_advanced',''),(174,3,'element_styles_background-color','','element_styles_background-color',''),(175,3,'element_styles_border','','element_styles_border',''),(176,3,'element_styles_border-style','','element_styles_border-style',''),(177,3,'element_styles_border-color','','element_styles_border-color',''),(178,3,'element_styles_color','','element_styles_color',''),(179,3,'element_styles_height','','element_styles_height',''),(180,3,'element_styles_width','','element_styles_width',''),(181,3,'element_styles_font-size','','element_styles_font-size',''),(182,3,'element_styles_margin','','element_styles_margin',''),(183,3,'element_styles_padding','','element_styles_padding',''),(184,3,'element_styles_display','','element_styles_display',''),(185,3,'element_styles_float','','element_styles_float',''),(186,3,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(187,3,'element_styles_advanced','','element_styles_advanced',''),(188,3,'cellcid','c3284','cellcid','c3284'),(189,4,'processing_label','Processing','processing_label','Processing'),(190,4,'order','5','order','5'),(191,4,'objectType','Field','objectType','Field'),(192,4,'objectDomain','fields','objectDomain','fields'),(193,4,'editActive','','editActive',''),(194,4,'container_class','','container_class',''),(195,4,'element_class','','element_class',''),(196,4,'wrap_styles_background-color','','wrap_styles_background-color',''),(197,4,'wrap_styles_border','','wrap_styles_border',''),(198,4,'wrap_styles_border-style','','wrap_styles_border-style',''),(199,4,'wrap_styles_border-color','','wrap_styles_border-color',''),(200,4,'wrap_styles_color','','wrap_styles_color',''),(201,4,'wrap_styles_height','','wrap_styles_height',''),(202,4,'wrap_styles_width','','wrap_styles_width',''),(203,4,'wrap_styles_font-size','','wrap_styles_font-size',''),(204,4,'wrap_styles_margin','','wrap_styles_margin',''),(205,4,'wrap_styles_padding','','wrap_styles_padding',''),(206,4,'wrap_styles_display','','wrap_styles_display',''),(207,4,'wrap_styles_float','','wrap_styles_float',''),(208,4,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(209,4,'wrap_styles_advanced','','wrap_styles_advanced',''),(210,4,'label_styles_background-color','','label_styles_background-color',''),(211,4,'label_styles_border','','label_styles_border',''),(212,4,'label_styles_border-style','','label_styles_border-style',''),(213,4,'label_styles_border-color','','label_styles_border-color',''),(214,4,'label_styles_color','','label_styles_color',''),(215,4,'label_styles_height','','label_styles_height',''),(216,4,'label_styles_width','','label_styles_width',''),(217,4,'label_styles_font-size','','label_styles_font-size',''),(218,4,'label_styles_margin','','label_styles_margin',''),(219,4,'label_styles_padding','','label_styles_padding',''),(220,4,'label_styles_display','','label_styles_display',''),(221,4,'label_styles_float','','label_styles_float',''),(222,4,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(223,4,'label_styles_advanced','','label_styles_advanced',''),(224,4,'element_styles_background-color','','element_styles_background-color',''),(225,4,'element_styles_border','','element_styles_border',''),(226,4,'element_styles_border-style','','element_styles_border-style',''),(227,4,'element_styles_border-color','','element_styles_border-color',''),(228,4,'element_styles_color','','element_styles_color',''),(229,4,'element_styles_height','','element_styles_height',''),(230,4,'element_styles_width','','element_styles_width',''),(231,4,'element_styles_font-size','','element_styles_font-size',''),(232,4,'element_styles_margin','','element_styles_margin',''),(233,4,'element_styles_padding','','element_styles_padding',''),(234,4,'element_styles_display','','element_styles_display',''),(235,4,'element_styles_float','','element_styles_float',''),(236,4,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(237,4,'element_styles_advanced','','element_styles_advanced',''),(238,4,'submit_element_hover_styles_background-color','','submit_element_hover_styles_background-color',''),(239,4,'submit_element_hover_styles_border','','submit_element_hover_styles_border',''),(240,4,'submit_element_hover_styles_border-style','','submit_element_hover_styles_border-style',''),(241,4,'submit_element_hover_styles_border-color','','submit_element_hover_styles_border-color',''),(242,4,'submit_element_hover_styles_color','','submit_element_hover_styles_color',''),(243,4,'submit_element_hover_styles_height','','submit_element_hover_styles_height',''),(244,4,'submit_element_hover_styles_width','','submit_element_hover_styles_width',''),(245,4,'submit_element_hover_styles_font-size','','submit_element_hover_styles_font-size',''),(246,4,'submit_element_hover_styles_margin','','submit_element_hover_styles_margin',''),(247,4,'submit_element_hover_styles_padding','','submit_element_hover_styles_padding',''),(248,4,'submit_element_hover_styles_display','','submit_element_hover_styles_display',''),(249,4,'submit_element_hover_styles_float','','submit_element_hover_styles_float',''),(250,4,'submit_element_hover_styles_show_advanced_css','0','submit_element_hover_styles_show_advanced_css','0'),(251,4,'submit_element_hover_styles_advanced','','submit_element_hover_styles_advanced',''),(252,4,'cellcid','c3287','cellcid','c3287'),(253,1,'label','Name','label','Name'),(254,1,'key','name','key','name'),(255,1,'type','textbox','type','textbox'),(256,1,'created_at','2020-10-08 07:40:01','created_at','2020-10-08 07:40:01'),(257,1,'custom_name_attribute','','custom_name_attribute',''),(258,1,'personally_identifiable','','personally_identifiable',''),(259,1,'value','','value',''),(260,2,'label','Email','label','Email'),(261,2,'key','email','key','email'),(262,2,'type','email','type','email'),(263,2,'created_at','2020-10-08 07:40:02','created_at','2020-10-08 07:40:02'),(264,2,'custom_name_attribute','email','custom_name_attribute','email'),(265,2,'personally_identifiable','1','personally_identifiable','1'),(266,2,'value','','value',''),(267,3,'label','Message','label','Message'),(268,3,'key','message','key','message'),(269,3,'type','textarea','type','textarea'),(270,3,'created_at','2020-10-08 07:40:02','created_at','2020-10-08 07:40:02'),(271,3,'value','','value',''),(272,4,'label','Submit','label','Submit'),(273,4,'key','submit','key','submit'),(274,4,'type','submit','type','submit'),(275,4,'created_at','2020-10-08 07:40:02','created_at','2020-10-08 07:40:02'),(276,5,'label','Name','label','Name'),(277,5,'key','name','key','name'),(278,5,'parent_id','2','parent_id','2'),(279,5,'type','textbox','type','textbox'),(280,5,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(281,5,'label_pos','above','label_pos','above'),(282,5,'required','1','required','1'),(283,5,'order','1','order','1'),(284,5,'placeholder','','placeholder',''),(285,5,'default','','default',''),(286,5,'wrapper_class','','wrapper_class',''),(287,5,'element_class','','element_class',''),(288,5,'objectType','Field','objectType','Field'),(289,5,'objectDomain','fields','objectDomain','fields'),(290,5,'editActive','','editActive',''),(291,5,'container_class','','container_class',''),(292,5,'input_limit','','input_limit',''),(293,5,'input_limit_type','characters','input_limit_type','characters'),(294,5,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(295,5,'manual_key','','manual_key',''),(296,5,'disable_input','','disable_input',''),(297,5,'admin_label','','admin_label',''),(298,5,'help_text','','help_text',''),(299,5,'desc_text','','desc_text',''),(300,5,'disable_browser_autocomplete','','disable_browser_autocomplete',''),(301,5,'mask','','mask',''),(302,5,'custom_mask','','custom_mask',''),(303,5,'wrap_styles_background-color','','wrap_styles_background-color',''),(304,5,'wrap_styles_border','','wrap_styles_border',''),(305,5,'wrap_styles_border-style','','wrap_styles_border-style',''),(306,5,'wrap_styles_border-color','','wrap_styles_border-color',''),(307,5,'wrap_styles_color','','wrap_styles_color',''),(308,5,'wrap_styles_height','','wrap_styles_height',''),(309,5,'wrap_styles_width','','wrap_styles_width',''),(310,5,'wrap_styles_font-size','','wrap_styles_font-size',''),(311,5,'wrap_styles_margin','','wrap_styles_margin',''),(312,5,'wrap_styles_padding','','wrap_styles_padding',''),(313,5,'wrap_styles_display','','wrap_styles_display',''),(314,5,'wrap_styles_float','','wrap_styles_float',''),(315,5,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(316,5,'wrap_styles_advanced','','wrap_styles_advanced',''),(317,5,'label_styles_background-color','','label_styles_background-color',''),(318,5,'label_styles_border','','label_styles_border',''),(319,5,'label_styles_border-style','','label_styles_border-style',''),(320,5,'label_styles_border-color','','label_styles_border-color',''),(321,5,'label_styles_color','','label_styles_color',''),(322,5,'label_styles_height','','label_styles_height',''),(323,5,'label_styles_width','','label_styles_width',''),(324,5,'label_styles_font-size','','label_styles_font-size',''),(325,5,'label_styles_margin','','label_styles_margin',''),(326,5,'label_styles_padding','','label_styles_padding',''),(327,5,'label_styles_display','','label_styles_display',''),(328,5,'label_styles_float','','label_styles_float',''),(329,5,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(330,5,'label_styles_advanced','','label_styles_advanced',''),(331,5,'element_styles_background-color','','element_styles_background-color',''),(332,5,'element_styles_border','','element_styles_border',''),(333,5,'element_styles_border-style','','element_styles_border-style',''),(334,5,'element_styles_border-color','','element_styles_border-color',''),(335,5,'element_styles_color','','element_styles_color',''),(336,5,'element_styles_height','','element_styles_height',''),(337,5,'element_styles_width','','element_styles_width',''),(338,5,'element_styles_font-size','','element_styles_font-size',''),(339,5,'element_styles_margin','','element_styles_margin',''),(340,5,'element_styles_padding','','element_styles_padding',''),(341,5,'element_styles_display','','element_styles_display',''),(342,5,'element_styles_float','','element_styles_float',''),(343,5,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(344,5,'element_styles_advanced','','element_styles_advanced',''),(345,5,'cellcid','c3277','cellcid','c3277'),(346,6,'label','Email','label','Email'),(347,6,'key','email','key','email'),(348,6,'parent_id','2','parent_id','2'),(349,6,'type','email','type','email'),(350,6,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(351,6,'label_pos','above','label_pos','above'),(352,6,'required','1','required','1'),(353,6,'order','2','order','2'),(354,6,'placeholder','','placeholder',''),(355,6,'default','','default',''),(356,6,'wrapper_class','','wrapper_class',''),(357,6,'element_class','','element_class',''),(358,6,'objectType','Field','objectType','Field'),(359,6,'objectDomain','fields','objectDomain','fields'),(360,6,'editActive','','editActive',''),(361,6,'container_class','','container_class',''),(362,6,'admin_label','','admin_label',''),(363,6,'help_text','','help_text',''),(364,6,'desc_text','','desc_text',''),(365,6,'wrap_styles_background-color','','wrap_styles_background-color',''),(366,6,'wrap_styles_border','','wrap_styles_border',''),(367,6,'wrap_styles_border-style','','wrap_styles_border-style',''),(368,6,'wrap_styles_border-color','','wrap_styles_border-color',''),(369,6,'wrap_styles_color','','wrap_styles_color',''),(370,6,'wrap_styles_height','','wrap_styles_height',''),(371,6,'wrap_styles_width','','wrap_styles_width',''),(372,6,'wrap_styles_font-size','','wrap_styles_font-size',''),(373,6,'wrap_styles_margin','','wrap_styles_margin',''),(374,6,'wrap_styles_padding','','wrap_styles_padding',''),(375,6,'wrap_styles_display','','wrap_styles_display',''),(376,6,'wrap_styles_float','','wrap_styles_float',''),(377,6,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(378,6,'wrap_styles_advanced','','wrap_styles_advanced',''),(379,6,'label_styles_background-color','','label_styles_background-color',''),(380,6,'label_styles_border','','label_styles_border',''),(381,6,'label_styles_border-style','','label_styles_border-style',''),(382,6,'label_styles_border-color','','label_styles_border-color',''),(383,6,'label_styles_color','','label_styles_color',''),(384,6,'label_styles_height','','label_styles_height',''),(385,6,'label_styles_width','','label_styles_width',''),(386,6,'label_styles_font-size','','label_styles_font-size',''),(387,6,'label_styles_margin','','label_styles_margin',''),(388,6,'label_styles_padding','','label_styles_padding',''),(389,6,'label_styles_display','','label_styles_display',''),(390,6,'label_styles_float','','label_styles_float',''),(391,6,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(392,6,'label_styles_advanced','','label_styles_advanced',''),(393,6,'element_styles_background-color','','element_styles_background-color',''),(394,6,'element_styles_border','','element_styles_border',''),(395,6,'element_styles_border-style','','element_styles_border-style',''),(396,6,'element_styles_border-color','','element_styles_border-color',''),(397,6,'element_styles_color','','element_styles_color',''),(398,6,'element_styles_height','','element_styles_height',''),(399,6,'element_styles_width','','element_styles_width',''),(400,6,'element_styles_font-size','','element_styles_font-size',''),(401,6,'element_styles_margin','','element_styles_margin',''),(402,6,'element_styles_padding','','element_styles_padding',''),(403,6,'element_styles_display','','element_styles_display',''),(404,6,'element_styles_float','','element_styles_float',''),(405,6,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(406,6,'element_styles_advanced','','element_styles_advanced',''),(407,6,'cellcid','c3281','cellcid','c3281'),(479,8,'label','Submit','label','Submit'),(480,8,'key','submit','key','submit'),(481,8,'parent_id','2','parent_id','2'),(482,8,'type','submit','type','submit'),(483,8,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(484,8,'processing_label','Processing','processing_label','Processing'),(485,8,'order','5','order','5'),(486,8,'objectType','Field','objectType','Field'),(487,8,'objectDomain','fields','objectDomain','fields'),(488,8,'editActive','','editActive',''),(489,8,'container_class','','container_class',''),(490,8,'element_class','','element_class',''),(491,8,'wrap_styles_background-color','','wrap_styles_background-color',''),(492,8,'wrap_styles_border','','wrap_styles_border',''),(493,8,'wrap_styles_border-style','','wrap_styles_border-style',''),(494,8,'wrap_styles_border-color','','wrap_styles_border-color',''),(495,8,'wrap_styles_color','','wrap_styles_color',''),(496,8,'wrap_styles_height','','wrap_styles_height',''),(497,8,'wrap_styles_width','','wrap_styles_width',''),(498,8,'wrap_styles_font-size','','wrap_styles_font-size',''),(499,8,'wrap_styles_margin','','wrap_styles_margin',''),(500,8,'wrap_styles_padding','','wrap_styles_padding',''),(501,8,'wrap_styles_display','','wrap_styles_display',''),(502,8,'wrap_styles_float','','wrap_styles_float',''),(503,8,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(504,8,'wrap_styles_advanced','','wrap_styles_advanced',''),(505,8,'label_styles_background-color','','label_styles_background-color',''),(506,8,'label_styles_border','','label_styles_border',''),(507,8,'label_styles_border-style','','label_styles_border-style',''),(508,8,'label_styles_border-color','','label_styles_border-color',''),(509,8,'label_styles_color','','label_styles_color',''),(510,8,'label_styles_height','','label_styles_height',''),(511,8,'label_styles_width','','label_styles_width',''),(512,8,'label_styles_font-size','','label_styles_font-size',''),(513,8,'label_styles_margin','','label_styles_margin',''),(514,8,'label_styles_padding','','label_styles_padding',''),(515,8,'label_styles_display','','label_styles_display',''),(516,8,'label_styles_float','','label_styles_float',''),(517,8,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(518,8,'label_styles_advanced','','label_styles_advanced',''),(519,8,'element_styles_background-color','','element_styles_background-color',''),(520,8,'element_styles_border','','element_styles_border',''),(521,8,'element_styles_border-style','','element_styles_border-style',''),(522,8,'element_styles_border-color','','element_styles_border-color',''),(523,8,'element_styles_color','','element_styles_color',''),(524,8,'element_styles_height','','element_styles_height',''),(525,8,'element_styles_width','','element_styles_width',''),(526,8,'element_styles_font-size','','element_styles_font-size',''),(527,8,'element_styles_margin','','element_styles_margin',''),(528,8,'element_styles_padding','','element_styles_padding',''),(529,8,'element_styles_display','','element_styles_display',''),(530,8,'element_styles_float','','element_styles_float',''),(531,8,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(532,8,'element_styles_advanced','','element_styles_advanced',''),(533,8,'submit_element_hover_styles_background-color','','submit_element_hover_styles_background-color',''),(534,8,'submit_element_hover_styles_border','','submit_element_hover_styles_border',''),(535,8,'submit_element_hover_styles_border-style','','submit_element_hover_styles_border-style',''),(536,8,'submit_element_hover_styles_border-color','','submit_element_hover_styles_border-color',''),(537,8,'submit_element_hover_styles_color','','submit_element_hover_styles_color',''),(538,8,'submit_element_hover_styles_height','','submit_element_hover_styles_height',''),(539,8,'submit_element_hover_styles_width','','submit_element_hover_styles_width',''),(540,8,'submit_element_hover_styles_font-size','','submit_element_hover_styles_font-size',''),(541,8,'submit_element_hover_styles_margin','','submit_element_hover_styles_margin',''),(542,8,'submit_element_hover_styles_padding','','submit_element_hover_styles_padding',''),(543,8,'submit_element_hover_styles_display','','submit_element_hover_styles_display',''),(544,8,'submit_element_hover_styles_float','','submit_element_hover_styles_float',''),(545,8,'submit_element_hover_styles_show_advanced_css','0','submit_element_hover_styles_show_advanced_css','0'),(546,8,'submit_element_hover_styles_advanced','','submit_element_hover_styles_advanced',''),(547,8,'cellcid','c3287','cellcid','c3287'),(548,5,'field_label','Name','field_label','Name'),(549,5,'field_key','name','field_key','name'),(550,5,'custom_name_attribute','','custom_name_attribute',''),(551,5,'personally_identifiable','','personally_identifiable',''),(552,5,'value','','value',''),(553,6,'field_label','Email','field_label','Email'),(554,6,'field_key','email','field_key','email'),(555,6,'custom_name_attribute','email','custom_name_attribute','email'),(556,6,'personally_identifiable','1','personally_identifiable','1'),(557,6,'value','','value',''),(558,8,'field_label','Submit','field_label','Submit'),(559,8,'field_key','submit','field_key','submit');
/*!40000 ALTER TABLE `wp_nf3_field_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf3_fields`
--

DROP TABLE IF EXISTS `wp_nf3_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_fields` (
  `id` int NOT NULL AUTO_INCREMENT,
  `label` longtext COLLATE utf8mb4_unicode_520_ci,
  `key` longtext COLLATE utf8mb4_unicode_520_ci,
  `type` longtext COLLATE utf8mb4_unicode_520_ci,
  `parent_id` int NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  `field_label` longtext COLLATE utf8mb4_unicode_520_ci,
  `field_key` longtext COLLATE utf8mb4_unicode_520_ci,
  `order` int DEFAULT NULL,
  `required` bit(1) DEFAULT NULL,
  `default_value` longtext COLLATE utf8mb4_unicode_520_ci,
  `label_pos` varchar(15) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `personally_identifiable` bit(1) DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_fields`
--

LOCK TABLES `wp_nf3_fields` WRITE;
/*!40000 ALTER TABLE `wp_nf3_fields` DISABLE KEYS */;
INSERT INTO `wp_nf3_fields` VALUES (1,'Name','name','textbox',1,'2020-10-08 07:51:49','2020-10-08 07:40:01','Name','name',1,_binary '','','above',_binary '\0'),(2,'Email','email','email',1,'2020-10-08 07:51:49','2020-10-08 07:40:02','Email','email',2,_binary '','','above',_binary ''),(3,'Message','message','textarea',1,'2020-10-08 07:51:49','2020-10-08 07:40:02','Message','message',3,_binary '','','above',_binary '\0'),(4,'Submit','submit','submit',1,'2020-10-08 07:51:49','2020-10-08 07:40:02','Submit','submit',5,_binary '\0','','',_binary '\0'),(5,'Name','name','textbox',2,'2020-10-08 08:05:44',NULL,'Name','name',1,_binary '','','above',_binary '\0'),(6,'Email','email','email',2,'2020-10-08 08:05:44',NULL,'Email','email',2,_binary '','','above',_binary ''),(8,'Submit','submit','submit',2,'2020-10-08 08:05:44',NULL,'Submit','submit',5,_binary '\0','','',_binary '\0');
/*!40000 ALTER TABLE `wp_nf3_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf3_form_meta`
--

DROP TABLE IF EXISTS `wp_nf3_form_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_form_meta` (
  `id` int NOT NULL AUTO_INCREMENT,
  `parent_id` int NOT NULL,
  `key` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `value` longtext COLLATE utf8mb4_unicode_520_ci,
  `meta_key` longtext COLLATE utf8mb4_unicode_520_ci,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=209 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_form_meta`
--

LOCK TABLES `wp_nf3_form_meta` WRITE;
/*!40000 ALTER TABLE `wp_nf3_form_meta` DISABLE KEYS */;
INSERT INTO `wp_nf3_form_meta` VALUES (1,1,'key','','key',''),(2,1,'created_at','2020-10-08 07:40:01','created_at','2020-10-08 07:40:01'),(3,1,'default_label_pos','above','default_label_pos','above'),(4,1,'conditions','a:0:{}','conditions','a:0:{}'),(5,1,'objectType','Form Setting','objectType','Form Setting'),(6,1,'editActive','','editActive',''),(7,1,'show_title','1','show_title','1'),(8,1,'clear_complete','1','clear_complete','1'),(9,1,'hide_complete','1','hide_complete','1'),(10,1,'wrapper_class','','wrapper_class',''),(11,1,'element_class','','element_class',''),(12,1,'add_submit','1','add_submit','1'),(13,1,'logged_in','','logged_in',''),(14,1,'not_logged_in_msg','','not_logged_in_msg',''),(15,1,'sub_limit_number','','sub_limit_number',''),(16,1,'sub_limit_msg','','sub_limit_msg',''),(17,1,'calculations','a:0:{}','calculations','a:0:{}'),(18,1,'formContentData','a:4:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:7:\"message\";i:3;s:6:\"submit\";}','formContentData','a:4:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:7:\"message\";i:3;s:6:\"submit\";}'),(19,1,'container_styles_background-color','','container_styles_background-color',''),(20,1,'container_styles_border','','container_styles_border',''),(21,1,'container_styles_border-style','','container_styles_border-style',''),(22,1,'container_styles_border-color','','container_styles_border-color',''),(23,1,'container_styles_color','','container_styles_color',''),(24,1,'container_styles_height','','container_styles_height',''),(25,1,'container_styles_width','','container_styles_width',''),(26,1,'container_styles_font-size','','container_styles_font-size',''),(27,1,'container_styles_margin','','container_styles_margin',''),(28,1,'container_styles_padding','','container_styles_padding',''),(29,1,'container_styles_display','','container_styles_display',''),(30,1,'container_styles_float','','container_styles_float',''),(31,1,'container_styles_show_advanced_css','0','container_styles_show_advanced_css','0'),(32,1,'container_styles_advanced','','container_styles_advanced',''),(33,1,'title_styles_background-color','','title_styles_background-color',''),(34,1,'title_styles_border','','title_styles_border',''),(35,1,'title_styles_border-style','','title_styles_border-style',''),(36,1,'title_styles_border-color','','title_styles_border-color',''),(37,1,'title_styles_color','','title_styles_color',''),(38,1,'title_styles_height','','title_styles_height',''),(39,1,'title_styles_width','','title_styles_width',''),(40,1,'title_styles_font-size','','title_styles_font-size',''),(41,1,'title_styles_margin','','title_styles_margin',''),(42,1,'title_styles_padding','','title_styles_padding',''),(43,1,'title_styles_display','','title_styles_display',''),(44,1,'title_styles_float','','title_styles_float',''),(45,1,'title_styles_show_advanced_css','0','title_styles_show_advanced_css','0'),(46,1,'title_styles_advanced','','title_styles_advanced',''),(47,1,'row_styles_background-color','','row_styles_background-color',''),(48,1,'row_styles_border','','row_styles_border',''),(49,1,'row_styles_border-style','','row_styles_border-style',''),(50,1,'row_styles_border-color','','row_styles_border-color',''),(51,1,'row_styles_color','','row_styles_color',''),(52,1,'row_styles_height','','row_styles_height',''),(53,1,'row_styles_width','','row_styles_width',''),(54,1,'row_styles_font-size','','row_styles_font-size',''),(55,1,'row_styles_margin','','row_styles_margin',''),(56,1,'row_styles_padding','','row_styles_padding',''),(57,1,'row_styles_display','','row_styles_display',''),(58,1,'row_styles_show_advanced_css','0','row_styles_show_advanced_css','0'),(59,1,'row_styles_advanced','','row_styles_advanced',''),(60,1,'row-odd_styles_background-color','','row-odd_styles_background-color',''),(61,1,'row-odd_styles_border','','row-odd_styles_border',''),(62,1,'row-odd_styles_border-style','','row-odd_styles_border-style',''),(63,1,'row-odd_styles_border-color','','row-odd_styles_border-color',''),(64,1,'row-odd_styles_color','','row-odd_styles_color',''),(65,1,'row-odd_styles_height','','row-odd_styles_height',''),(66,1,'row-odd_styles_width','','row-odd_styles_width',''),(67,1,'row-odd_styles_font-size','','row-odd_styles_font-size',''),(68,1,'row-odd_styles_margin','','row-odd_styles_margin',''),(69,1,'row-odd_styles_padding','','row-odd_styles_padding',''),(70,1,'row-odd_styles_display','','row-odd_styles_display',''),(71,1,'row-odd_styles_show_advanced_css','0','row-odd_styles_show_advanced_css','0'),(72,1,'row-odd_styles_advanced','','row-odd_styles_advanced',''),(73,1,'success-msg_styles_background-color','','success-msg_styles_background-color',''),(74,1,'success-msg_styles_border','','success-msg_styles_border',''),(75,1,'success-msg_styles_border-style','','success-msg_styles_border-style',''),(76,1,'success-msg_styles_border-color','','success-msg_styles_border-color',''),(77,1,'success-msg_styles_color','','success-msg_styles_color',''),(78,1,'success-msg_styles_height','','success-msg_styles_height',''),(79,1,'success-msg_styles_width','','success-msg_styles_width',''),(80,1,'success-msg_styles_font-size','','success-msg_styles_font-size',''),(81,1,'success-msg_styles_margin','','success-msg_styles_margin',''),(82,1,'success-msg_styles_padding','','success-msg_styles_padding',''),(83,1,'success-msg_styles_display','','success-msg_styles_display',''),(84,1,'success-msg_styles_show_advanced_css','0','success-msg_styles_show_advanced_css','0'),(85,1,'success-msg_styles_advanced','','success-msg_styles_advanced',''),(86,1,'error_msg_styles_background-color','','error_msg_styles_background-color',''),(87,1,'error_msg_styles_border','','error_msg_styles_border',''),(88,1,'error_msg_styles_border-style','','error_msg_styles_border-style',''),(89,1,'error_msg_styles_border-color','','error_msg_styles_border-color',''),(90,1,'error_msg_styles_color','','error_msg_styles_color',''),(91,1,'error_msg_styles_height','','error_msg_styles_height',''),(92,1,'error_msg_styles_width','','error_msg_styles_width',''),(93,1,'error_msg_styles_font-size','','error_msg_styles_font-size',''),(94,1,'error_msg_styles_margin','','error_msg_styles_margin',''),(95,1,'error_msg_styles_padding','','error_msg_styles_padding',''),(96,1,'error_msg_styles_display','','error_msg_styles_display',''),(97,1,'error_msg_styles_show_advanced_css','0','error_msg_styles_show_advanced_css','0'),(98,1,'error_msg_styles_advanced','','error_msg_styles_advanced',''),(99,1,'allow_public_link','0','allow_public_link','0'),(100,1,'embed_form','','embed_form',''),(101,1,'currency','','currency',''),(102,1,'unique_field_error','A form with this value has already been submitted.','unique_field_error','A form with this value has already been submitted.'),(103,2,'title','Contact Me','title','Contact Me'),(104,2,'key','','key',''),(105,2,'created_at','2016-08-24 16:39:20','created_at','2016-08-24 16:39:20'),(106,2,'default_label_pos','above','default_label_pos','above'),(107,2,'conditions','a:0:{}','conditions','a:0:{}'),(108,2,'objectType','Form Setting','objectType','Form Setting'),(109,2,'editActive','','editActive',''),(110,2,'show_title','1','show_title','1'),(111,2,'clear_complete','1','clear_complete','1'),(112,2,'hide_complete','1','hide_complete','1'),(113,2,'wrapper_class','','wrapper_class',''),(114,2,'element_class','','element_class',''),(115,2,'add_submit','1','add_submit','1'),(116,2,'logged_in','0','logged_in','0'),(117,2,'not_logged_in_msg','','not_logged_in_msg',''),(118,2,'sub_limit_number','','sub_limit_number',''),(119,2,'sub_limit_msg','','sub_limit_msg',''),(120,2,'calculations','a:0:{}','calculations','a:0:{}'),(121,2,'formContentData','a:3:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:6:\"submit\";}','formContentData','a:3:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:6:\"submit\";}'),(122,2,'container_styles_background-color','','container_styles_background-color',''),(123,2,'container_styles_border','','container_styles_border',''),(124,2,'container_styles_border-style','','container_styles_border-style',''),(125,2,'container_styles_border-color','','container_styles_border-color',''),(126,2,'container_styles_color','','container_styles_color',''),(127,2,'container_styles_height','','container_styles_height',''),(128,2,'container_styles_width','','container_styles_width',''),(129,2,'container_styles_font-size','','container_styles_font-size',''),(130,2,'container_styles_margin','','container_styles_margin',''),(131,2,'container_styles_padding','','container_styles_padding',''),(132,2,'container_styles_display','','container_styles_display',''),(133,2,'container_styles_float','','container_styles_float',''),(134,2,'container_styles_show_advanced_css','0','container_styles_show_advanced_css','0'),(135,2,'container_styles_advanced','','container_styles_advanced',''),(136,2,'title_styles_background-color','','title_styles_background-color',''),(137,2,'title_styles_border','','title_styles_border',''),(138,2,'title_styles_border-style','','title_styles_border-style',''),(139,2,'title_styles_border-color','','title_styles_border-color',''),(140,2,'title_styles_color','','title_styles_color',''),(141,2,'title_styles_height','','title_styles_height',''),(142,2,'title_styles_width','','title_styles_width',''),(143,2,'title_styles_font-size','','title_styles_font-size',''),(144,2,'title_styles_margin','','title_styles_margin',''),(145,2,'title_styles_padding','','title_styles_padding',''),(146,2,'title_styles_display','','title_styles_display',''),(147,2,'title_styles_float','','title_styles_float',''),(148,2,'title_styles_show_advanced_css','0','title_styles_show_advanced_css','0'),(149,2,'title_styles_advanced','','title_styles_advanced',''),(150,2,'row_styles_background-color','','row_styles_background-color',''),(151,2,'row_styles_border','','row_styles_border',''),(152,2,'row_styles_border-style','','row_styles_border-style',''),(153,2,'row_styles_border-color','','row_styles_border-color',''),(154,2,'row_styles_color','','row_styles_color',''),(155,2,'row_styles_height','','row_styles_height',''),(156,2,'row_styles_width','','row_styles_width',''),(157,2,'row_styles_font-size','','row_styles_font-size',''),(158,2,'row_styles_margin','','row_styles_margin',''),(159,2,'row_styles_padding','','row_styles_padding',''),(160,2,'row_styles_display','','row_styles_display',''),(161,2,'row_styles_show_advanced_css','0','row_styles_show_advanced_css','0'),(162,2,'row_styles_advanced','','row_styles_advanced',''),(163,2,'row-odd_styles_background-color','','row-odd_styles_background-color',''),(164,2,'row-odd_styles_border','','row-odd_styles_border',''),(165,2,'row-odd_styles_border-style','','row-odd_styles_border-style',''),(166,2,'row-odd_styles_border-color','','row-odd_styles_border-color',''),(167,2,'row-odd_styles_color','','row-odd_styles_color',''),(168,2,'row-odd_styles_height','','row-odd_styles_height',''),(169,2,'row-odd_styles_width','','row-odd_styles_width',''),(170,2,'row-odd_styles_font-size','','row-odd_styles_font-size',''),(171,2,'row-odd_styles_margin','','row-odd_styles_margin',''),(172,2,'row-odd_styles_padding','','row-odd_styles_padding',''),(173,2,'row-odd_styles_display','','row-odd_styles_display',''),(174,2,'row-odd_styles_show_advanced_css','0','row-odd_styles_show_advanced_css','0'),(175,2,'row-odd_styles_advanced','','row-odd_styles_advanced',''),(176,2,'success-msg_styles_background-color','','success-msg_styles_background-color',''),(177,2,'success-msg_styles_border','','success-msg_styles_border',''),(178,2,'success-msg_styles_border-style','','success-msg_styles_border-style',''),(179,2,'success-msg_styles_border-color','','success-msg_styles_border-color',''),(180,2,'success-msg_styles_color','','success-msg_styles_color',''),(181,2,'success-msg_styles_height','','success-msg_styles_height',''),(182,2,'success-msg_styles_width','','success-msg_styles_width',''),(183,2,'success-msg_styles_font-size','','success-msg_styles_font-size',''),(184,2,'success-msg_styles_margin','','success-msg_styles_margin',''),(185,2,'success-msg_styles_padding','','success-msg_styles_padding',''),(186,2,'success-msg_styles_display','','success-msg_styles_display',''),(187,2,'success-msg_styles_show_advanced_css','0','success-msg_styles_show_advanced_css','0'),(188,2,'success-msg_styles_advanced','','success-msg_styles_advanced',''),(189,2,'error_msg_styles_background-color','','error_msg_styles_background-color',''),(190,2,'error_msg_styles_border','','error_msg_styles_border',''),(191,2,'error_msg_styles_border-style','','error_msg_styles_border-style',''),(192,2,'error_msg_styles_border-color','','error_msg_styles_border-color',''),(193,2,'error_msg_styles_color','','error_msg_styles_color',''),(194,2,'error_msg_styles_height','','error_msg_styles_height',''),(195,2,'error_msg_styles_width','','error_msg_styles_width',''),(196,2,'error_msg_styles_font-size','','error_msg_styles_font-size',''),(197,2,'error_msg_styles_margin','','error_msg_styles_margin',''),(198,2,'error_msg_styles_padding','','error_msg_styles_padding',''),(199,2,'error_msg_styles_display','','error_msg_styles_display',''),(200,2,'error_msg_styles_show_advanced_css','0','error_msg_styles_show_advanced_css','0'),(201,2,'error_msg_styles_advanced','','error_msg_styles_advanced',''),(202,2,'seq_num',NULL,'seq_num',NULL),(203,2,'allow_public_link','0','allow_public_link','0'),(204,2,'embed_form','','embed_form',''),(205,2,'currency','','currency',''),(206,2,'unique_field_error','A form with this value has already been submitted.','unique_field_error','A form with this value has already been submitted.'),(207,2,'_seq_num','3','_seq_num','3'),(208,1,'_seq_num','14','_seq_num','14');
/*!40000 ALTER TABLE `wp_nf3_form_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf3_forms`
--

DROP TABLE IF EXISTS `wp_nf3_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_forms` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` longtext COLLATE utf8mb4_unicode_520_ci,
  `key` longtext COLLATE utf8mb4_unicode_520_ci,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  `views` int DEFAULT NULL,
  `subs` int DEFAULT NULL,
  `form_title` longtext COLLATE utf8mb4_unicode_520_ci,
  `default_label_pos` varchar(15) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `show_title` bit(1) DEFAULT NULL,
  `clear_complete` bit(1) DEFAULT NULL,
  `hide_complete` bit(1) DEFAULT NULL,
  `logged_in` bit(1) DEFAULT NULL,
  `seq_num` int DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_forms`
--

LOCK TABLES `wp_nf3_forms` WRITE;
/*!40000 ALTER TABLE `wp_nf3_forms` DISABLE KEYS */;
INSERT INTO `wp_nf3_forms` VALUES (1,'Contact Me',NULL,'2023-02-14 07:53:32','2020-10-08 07:40:01',NULL,NULL,'Contact Me','above',_binary '',_binary '',_binary '',_binary '\0',14),(2,'Contact Me',NULL,'2021-07-20 04:01:45',NULL,NULL,NULL,'Contact Me','above',_binary '',_binary '',_binary '',_binary '\0',3);
/*!40000 ALTER TABLE `wp_nf3_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf3_object_meta`
--

DROP TABLE IF EXISTS `wp_nf3_object_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_object_meta` (
  `id` int NOT NULL AUTO_INCREMENT,
  `parent_id` int NOT NULL,
  `key` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `value` longtext COLLATE utf8mb4_unicode_520_ci,
  `meta_key` longtext COLLATE utf8mb4_unicode_520_ci,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_object_meta`
--

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

--
-- Table structure for table `wp_nf3_objects`
--

DROP TABLE IF EXISTS `wp_nf3_objects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_objects` (
  `id` int NOT NULL AUTO_INCREMENT,
  `type` longtext COLLATE utf8mb4_unicode_520_ci,
  `title` longtext COLLATE utf8mb4_unicode_520_ci,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  `object_title` longtext COLLATE utf8mb4_unicode_520_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_objects`
--

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

--
-- Table structure for table `wp_nf3_relationships`
--

DROP TABLE IF EXISTS `wp_nf3_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_relationships` (
  `id` int NOT NULL AUTO_INCREMENT,
  `child_id` int NOT NULL,
  `child_type` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `parent_id` int NOT NULL,
  `parent_type` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_relationships`
--

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

--
-- Table structure for table `wp_nf3_upgrades`
--

DROP TABLE IF EXISTS `wp_nf3_upgrades`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_nf3_upgrades` (
  `id` int NOT NULL,
  `cache` longtext COLLATE utf8mb4_unicode_520_ci,
  `stage` int NOT NULL DEFAULT '0',
  `maintenance` bit(1) DEFAULT b'0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_upgrades`
--

LOCK TABLES `wp_nf3_upgrades` WRITE;
/*!40000 ALTER TABLE `wp_nf3_upgrades` DISABLE KEYS */;
INSERT INTO `wp_nf3_upgrades` VALUES (1,'a:7:{s:2:\"id\";i:1;s:20:\"show_publish_options\";b:0;s:6:\"fields\";a:4:{i:0;a:2:{s:8:\"settings\";a:72:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:5:\"order\";s:1:\"1\";s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:4:\"name\";s:4:\"type\";s:7:\"textbox\";s:10:\"created_at\";s:19:\"2020-10-08 07:40:01\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3277\";s:21:\"custom_name_attribute\";s:0:\"\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:1;}i:1;a:2:{s:8:\"settings\";a:64:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:5:\"order\";s:1:\"2\";s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:5:\"email\";s:4:\"type\";s:5:\"email\";s:10:\"created_at\";s:19:\"2020-10-08 07:40:02\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3281\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:2;}i:2;a:2:{s:8:\"settings\";a:71:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:5:\"order\";s:1:\"3\";s:5:\"label\";s:7:\"Message\";s:3:\"key\";s:7:\"message\";s:4:\"type\";s:8:\"textarea\";s:10:\"created_at\";s:19:\"2020-10-08 07:40:02\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:12:\"textarea_rte\";s:0:\"\";s:18:\"disable_rte_mobile\";s:0:\"\";s:14:\"textarea_media\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3284\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:3;}i:3;a:2:{s:8:\"settings\";a:68:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:5:\"order\";s:1:\"5\";s:5:\"label\";s:6:\"Submit\";s:3:\"key\";s:6:\"submit\";s:4:\"type\";s:6:\"submit\";s:10:\"created_at\";s:19:\"2020-10-08 07:40:02\";s:16:\"processing_label\";s:10:\"Processing\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:44:\"submit_element_hover_styles_background-color\";s:0:\"\";s:34:\"submit_element_hover_styles_border\";s:0:\"\";s:40:\"submit_element_hover_styles_border-style\";s:0:\"\";s:40:\"submit_element_hover_styles_border-color\";s:0:\"\";s:33:\"submit_element_hover_styles_color\";s:0:\"\";s:34:\"submit_element_hover_styles_height\";s:0:\"\";s:33:\"submit_element_hover_styles_width\";s:0:\"\";s:37:\"submit_element_hover_styles_font-size\";s:0:\"\";s:34:\"submit_element_hover_styles_margin\";s:0:\"\";s:35:\"submit_element_hover_styles_padding\";s:0:\"\";s:35:\"submit_element_hover_styles_display\";s:0:\"\";s:33:\"submit_element_hover_styles_float\";s:0:\"\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"0\";s:36:\"submit_element_hover_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3287\";}s:2:\"id\";i:4;}}s:7:\"actions\";a:4:{i:0;a:2:{s:8:\"settings\";a:30:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2020-10-08 07:40:03\";s:5:\"label\";s:16:\"Store Submission\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";s:11:\"success_msg\";s:42:\"Your form has been successfully submitted.\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";i:0;s:16:\"subs_expire_time\";s:2:\"90\";}s:2:\"id\";i:1;}i:1;a:2:{s:8:\"settings\";a:25:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2020-10-08 07:40:03\";s:5:\"label\";s:18:\"Email Confirmation\";s:2:\"to\";s:13:\"{field:email}\";s:7:\"subject\";s:24:\"This is an email action.\";s:7:\"message\";s:19:\"Hello, Ninja Forms!\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:24:\"Submission Confirmation \";s:13:\"email_message\";s:29:\"<p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";}s:2:\"id\";i:2;}i:2;a:2:{s:8:\"settings\";a:24:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2020-10-08 07:40:04\";s:5:\"label\";s:18:\"Email Notification\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:20:\"{system:admin_email}\";s:13:\"email_subject\";s:29:\"New message from {field:name}\";s:13:\"email_message\";s:60:\"<p>{field:message}</p><p>-{field:name} ( {field:email} )</p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:13:\"{field:email}\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:1:\"0\";s:19:\"email_message_plain\";s:0:\"\";}s:2:\"id\";i:3;}i:3;a:2:{s:8:\"settings\";a:26:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2020-10-08 07:40:04\";s:5:\"label\";s:15:\"Success Message\";s:7:\"message\";s:47:\"Thank you {field:name} for filling out my form!\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:11:\"success_msg\";s:89:\"<p>Form submitted successfully.</p><p>A confirmation email was sent to {field:email}.</p>\";s:19:\"email_message_plain\";s:0:\"\";}s:2:\"id\";i:4;}}s:8:\"settings\";a:103:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";s:0:\"\";s:5:\"title\";s:10:\"Contact Me\";s:3:\"key\";s:0:\"\";s:10:\"created_at\";s:19:\"2020-10-08 07:40:01\";s:17:\"default_label_pos\";s:5:\"above\";s:10:\"conditions\";a:0:{}s:10:\"show_title\";s:1:\"1\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"add_submit\";s:1:\"1\";s:9:\"logged_in\";s:0:\"\";s:17:\"not_logged_in_msg\";s:0:\"\";s:16:\"sub_limit_number\";s:0:\"\";s:13:\"sub_limit_msg\";s:0:\"\";s:12:\"calculations\";a:0:{}s:15:\"formContentData\";a:4:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:7:\"message\";i:3;s:6:\"submit\";}s:33:\"container_styles_background-color\";s:0:\"\";s:23:\"container_styles_border\";s:0:\"\";s:29:\"container_styles_border-style\";s:0:\"\";s:29:\"container_styles_border-color\";s:0:\"\";s:22:\"container_styles_color\";s:0:\"\";s:23:\"container_styles_height\";s:0:\"\";s:22:\"container_styles_width\";s:0:\"\";s:26:\"container_styles_font-size\";s:0:\"\";s:23:\"container_styles_margin\";s:0:\"\";s:24:\"container_styles_padding\";s:0:\"\";s:24:\"container_styles_display\";s:0:\"\";s:22:\"container_styles_float\";s:0:\"\";s:34:\"container_styles_show_advanced_css\";s:1:\"0\";s:25:\"container_styles_advanced\";s:0:\"\";s:29:\"title_styles_background-color\";s:0:\"\";s:19:\"title_styles_border\";s:0:\"\";s:25:\"title_styles_border-style\";s:0:\"\";s:25:\"title_styles_border-color\";s:0:\"\";s:18:\"title_styles_color\";s:0:\"\";s:19:\"title_styles_height\";s:0:\"\";s:18:\"title_styles_width\";s:0:\"\";s:22:\"title_styles_font-size\";s:0:\"\";s:19:\"title_styles_margin\";s:0:\"\";s:20:\"title_styles_padding\";s:0:\"\";s:20:\"title_styles_display\";s:0:\"\";s:18:\"title_styles_float\";s:0:\"\";s:30:\"title_styles_show_advanced_css\";s:1:\"0\";s:21:\"title_styles_advanced\";s:0:\"\";s:27:\"row_styles_background-color\";s:0:\"\";s:17:\"row_styles_border\";s:0:\"\";s:23:\"row_styles_border-style\";s:0:\"\";s:23:\"row_styles_border-color\";s:0:\"\";s:16:\"row_styles_color\";s:0:\"\";s:17:\"row_styles_height\";s:0:\"\";s:16:\"row_styles_width\";s:0:\"\";s:20:\"row_styles_font-size\";s:0:\"\";s:17:\"row_styles_margin\";s:0:\"\";s:18:\"row_styles_padding\";s:0:\"\";s:18:\"row_styles_display\";s:0:\"\";s:28:\"row_styles_show_advanced_css\";s:1:\"0\";s:19:\"row_styles_advanced\";s:0:\"\";s:31:\"row-odd_styles_background-color\";s:0:\"\";s:21:\"row-odd_styles_border\";s:0:\"\";s:27:\"row-odd_styles_border-style\";s:0:\"\";s:27:\"row-odd_styles_border-color\";s:0:\"\";s:20:\"row-odd_styles_color\";s:0:\"\";s:21:\"row-odd_styles_height\";s:0:\"\";s:20:\"row-odd_styles_width\";s:0:\"\";s:24:\"row-odd_styles_font-size\";s:0:\"\";s:21:\"row-odd_styles_margin\";s:0:\"\";s:22:\"row-odd_styles_padding\";s:0:\"\";s:22:\"row-odd_styles_display\";s:0:\"\";s:32:\"row-odd_styles_show_advanced_css\";s:1:\"0\";s:23:\"row-odd_styles_advanced\";s:0:\"\";s:35:\"success-msg_styles_background-color\";s:0:\"\";s:25:\"success-msg_styles_border\";s:0:\"\";s:31:\"success-msg_styles_border-style\";s:0:\"\";s:31:\"success-msg_styles_border-color\";s:0:\"\";s:24:\"success-msg_styles_color\";s:0:\"\";s:25:\"success-msg_styles_height\";s:0:\"\";s:24:\"success-msg_styles_width\";s:0:\"\";s:28:\"success-msg_styles_font-size\";s:0:\"\";s:25:\"success-msg_styles_margin\";s:0:\"\";s:26:\"success-msg_styles_padding\";s:0:\"\";s:26:\"success-msg_styles_display\";s:0:\"\";s:36:\"success-msg_styles_show_advanced_css\";s:1:\"0\";s:27:\"success-msg_styles_advanced\";s:0:\"\";s:33:\"error_msg_styles_background-color\";s:0:\"\";s:23:\"error_msg_styles_border\";s:0:\"\";s:29:\"error_msg_styles_border-style\";s:0:\"\";s:29:\"error_msg_styles_border-color\";s:0:\"\";s:22:\"error_msg_styles_color\";s:0:\"\";s:23:\"error_msg_styles_height\";s:0:\"\";s:22:\"error_msg_styles_width\";s:0:\"\";s:26:\"error_msg_styles_font-size\";s:0:\"\";s:23:\"error_msg_styles_margin\";s:0:\"\";s:24:\"error_msg_styles_padding\";s:0:\"\";s:24:\"error_msg_styles_display\";s:0:\"\";s:34:\"error_msg_styles_show_advanced_css\";s:1:\"0\";s:25:\"error_msg_styles_advanced\";s:0:\"\";s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";}s:14:\"deleted_fields\";a:0:{}s:15:\"deleted_actions\";a:0:{}}',4,_binary '\0'),(2,'a:7:{s:2:\"id\";i:2;s:20:\"show_publish_options\";b:0;s:6:\"fields\";a:3:{i:0;a:2:{s:8:\"settings\";a:74:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:5:\"order\";s:1:\"1\";s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:4:\"name\";s:4:\"type\";s:7:\"textbox\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3277\";s:11:\"field_label\";s:4:\"Name\";s:9:\"field_key\";s:4:\"name\";s:21:\"custom_name_attribute\";s:0:\"\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:5;}i:1;a:2:{s:8:\"settings\";a:66:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:5:\"order\";s:1:\"2\";s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:5:\"email\";s:4:\"type\";s:5:\"email\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3281\";s:11:\"field_label\";s:5:\"Email\";s:9:\"field_key\";s:5:\"email\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:6;}i:2;a:2:{s:8:\"settings\";a:70:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:5:\"order\";s:1:\"5\";s:5:\"label\";s:6:\"Submit\";s:3:\"key\";s:6:\"submit\";s:4:\"type\";s:6:\"submit\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:16:\"processing_label\";s:10:\"Processing\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:44:\"submit_element_hover_styles_background-color\";s:0:\"\";s:34:\"submit_element_hover_styles_border\";s:0:\"\";s:40:\"submit_element_hover_styles_border-style\";s:0:\"\";s:40:\"submit_element_hover_styles_border-color\";s:0:\"\";s:33:\"submit_element_hover_styles_color\";s:0:\"\";s:34:\"submit_element_hover_styles_height\";s:0:\"\";s:33:\"submit_element_hover_styles_width\";s:0:\"\";s:37:\"submit_element_hover_styles_font-size\";s:0:\"\";s:34:\"submit_element_hover_styles_margin\";s:0:\"\";s:35:\"submit_element_hover_styles_padding\";s:0:\"\";s:35:\"submit_element_hover_styles_display\";s:0:\"\";s:33:\"submit_element_hover_styles_float\";s:0:\"\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"0\";s:36:\"submit_element_hover_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3287\";s:11:\"field_label\";s:6:\"Submit\";s:9:\"field_key\";s:6:\"submit\";}s:2:\"id\";i:8;}}s:7:\"actions\";a:4:{i:0;a:2:{s:8:\"settings\";a:30:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:5:\"label\";s:16:\"Store Submission\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";s:11:\"success_msg\";s:42:\"Your form has been successfully submitted.\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";i:0;s:16:\"subs_expire_time\";s:2:\"90\";}s:2:\"id\";i:5;}i:1;a:2:{s:8:\"settings\";a:25:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:5:\"label\";s:18:\"Email Confirmation\";s:2:\"to\";s:13:\"{field:email}\";s:7:\"subject\";s:24:\"This is an email action.\";s:7:\"message\";s:19:\"Hello, Ninja Forms!\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:24:\"Submission Confirmation \";s:13:\"email_message\";s:29:\"<p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";}s:2:\"id\";i:6;}i:2;a:2:{s:8:\"settings\";a:24:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-24 16:47:39\";s:5:\"label\";s:18:\"Email Notification\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:20:\"{system:admin_email}\";s:13:\"email_subject\";s:29:\"New message from {field:name}\";s:13:\"email_message\";s:45:\"<p></p><p>-{field:name} ( {field:email} )</p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:13:\"{field:email}\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:1:\"0\";s:19:\"email_message_plain\";s:0:\"\";}s:2:\"id\";i:7;}i:3;a:2:{s:8:\"settings\";a:26:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:5:\"label\";s:15:\"Success Message\";s:7:\"message\";s:47:\"Thank you {field:name} for filling out my form!\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:11:\"success_msg\";s:89:\"<p>Form submitted successfully.</p><p>A confirmation email was sent to {field:email}.</p>\";s:19:\"email_message_plain\";s:0:\"\";}s:2:\"id\";i:8;}}s:8:\"settings\";a:104:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";s:0:\"\";s:5:\"title\";s:10:\"Contact Me\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:10:\"form_title\";s:10:\"Contact Me\";s:17:\"default_label_pos\";s:5:\"above\";s:10:\"show_title\";s:1:\"1\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:9:\"logged_in\";s:1:\"0\";s:3:\"key\";s:0:\"\";s:10:\"conditions\";a:0:{}s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"add_submit\";s:1:\"1\";s:17:\"not_logged_in_msg\";s:0:\"\";s:16:\"sub_limit_number\";s:0:\"\";s:13:\"sub_limit_msg\";s:0:\"\";s:12:\"calculations\";a:0:{}s:15:\"formContentData\";a:3:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:6:\"submit\";}s:33:\"container_styles_background-color\";s:0:\"\";s:23:\"container_styles_border\";s:0:\"\";s:29:\"container_styles_border-style\";s:0:\"\";s:29:\"container_styles_border-color\";s:0:\"\";s:22:\"container_styles_color\";s:0:\"\";s:23:\"container_styles_height\";s:0:\"\";s:22:\"container_styles_width\";s:0:\"\";s:26:\"container_styles_font-size\";s:0:\"\";s:23:\"container_styles_margin\";s:0:\"\";s:24:\"container_styles_padding\";s:0:\"\";s:24:\"container_styles_display\";s:0:\"\";s:22:\"container_styles_float\";s:0:\"\";s:34:\"container_styles_show_advanced_css\";s:1:\"0\";s:25:\"container_styles_advanced\";s:0:\"\";s:29:\"title_styles_background-color\";s:0:\"\";s:19:\"title_styles_border\";s:0:\"\";s:25:\"title_styles_border-style\";s:0:\"\";s:25:\"title_styles_border-color\";s:0:\"\";s:18:\"title_styles_color\";s:0:\"\";s:19:\"title_styles_height\";s:0:\"\";s:18:\"title_styles_width\";s:0:\"\";s:22:\"title_styles_font-size\";s:0:\"\";s:19:\"title_styles_margin\";s:0:\"\";s:20:\"title_styles_padding\";s:0:\"\";s:20:\"title_styles_display\";s:0:\"\";s:18:\"title_styles_float\";s:0:\"\";s:30:\"title_styles_show_advanced_css\";s:1:\"0\";s:21:\"title_styles_advanced\";s:0:\"\";s:27:\"row_styles_background-color\";s:0:\"\";s:17:\"row_styles_border\";s:0:\"\";s:23:\"row_styles_border-style\";s:0:\"\";s:23:\"row_styles_border-color\";s:0:\"\";s:16:\"row_styles_color\";s:0:\"\";s:17:\"row_styles_height\";s:0:\"\";s:16:\"row_styles_width\";s:0:\"\";s:20:\"row_styles_font-size\";s:0:\"\";s:17:\"row_styles_margin\";s:0:\"\";s:18:\"row_styles_padding\";s:0:\"\";s:18:\"row_styles_display\";s:0:\"\";s:28:\"row_styles_show_advanced_css\";s:1:\"0\";s:19:\"row_styles_advanced\";s:0:\"\";s:31:\"row-odd_styles_background-color\";s:0:\"\";s:21:\"row-odd_styles_border\";s:0:\"\";s:27:\"row-odd_styles_border-style\";s:0:\"\";s:27:\"row-odd_styles_border-color\";s:0:\"\";s:20:\"row-odd_styles_color\";s:0:\"\";s:21:\"row-odd_styles_height\";s:0:\"\";s:20:\"row-odd_styles_width\";s:0:\"\";s:24:\"row-odd_styles_font-size\";s:0:\"\";s:21:\"row-odd_styles_margin\";s:0:\"\";s:22:\"row-odd_styles_padding\";s:0:\"\";s:22:\"row-odd_styles_display\";s:0:\"\";s:32:\"row-odd_styles_show_advanced_css\";s:1:\"0\";s:23:\"row-odd_styles_advanced\";s:0:\"\";s:35:\"success-msg_styles_background-color\";s:0:\"\";s:25:\"success-msg_styles_border\";s:0:\"\";s:31:\"success-msg_styles_border-style\";s:0:\"\";s:31:\"success-msg_styles_border-color\";s:0:\"\";s:24:\"success-msg_styles_color\";s:0:\"\";s:25:\"success-msg_styles_height\";s:0:\"\";s:24:\"success-msg_styles_width\";s:0:\"\";s:28:\"success-msg_styles_font-size\";s:0:\"\";s:25:\"success-msg_styles_margin\";s:0:\"\";s:26:\"success-msg_styles_padding\";s:0:\"\";s:26:\"success-msg_styles_display\";s:0:\"\";s:36:\"success-msg_styles_show_advanced_css\";s:1:\"0\";s:27:\"success-msg_styles_advanced\";s:0:\"\";s:33:\"error_msg_styles_background-color\";s:0:\"\";s:23:\"error_msg_styles_border\";s:0:\"\";s:29:\"error_msg_styles_border-style\";s:0:\"\";s:29:\"error_msg_styles_border-color\";s:0:\"\";s:22:\"error_msg_styles_color\";s:0:\"\";s:23:\"error_msg_styles_height\";s:0:\"\";s:22:\"error_msg_styles_width\";s:0:\"\";s:26:\"error_msg_styles_font-size\";s:0:\"\";s:23:\"error_msg_styles_margin\";s:0:\"\";s:24:\"error_msg_styles_padding\";s:0:\"\";s:24:\"error_msg_styles_display\";s:0:\"\";s:34:\"error_msg_styles_show_advanced_css\";s:1:\"0\";s:25:\"error_msg_styles_advanced\";s:0:\"\";s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";}s:14:\"deleted_fields\";a:1:{i:7;i:7;}s:15:\"deleted_actions\";a:0:{}}',4,_binary '\0');
/*!40000 ALTER TABLE `wp_nf3_upgrades` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_options`
--

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

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://genomevalley.org','yes'),(2,'home','http://genomevalley.org','yes'),(3,'blogname','genomevalley','yes'),(4,'blogdescription','Hyderabad the growing state of india','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','[email protected]','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','0','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','[email protected]','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','2','yes'),(19,'default_comment_status','closed','yes'),(20,'default_ping_status','closed','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','0','yes'),(28,'permalink_structure','/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:16:{i:0;s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";i:1;s:35:\"404-to-homepage/404-to-homepage.php\";i:2;s:19:\"akismet/akismet.php\";i:3;s:91:\"all-in-one-wp-migration-multisite-extension/all-in-one-wp-migration-multisite-extension.php\";i:4;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:5;s:81:\"auto-terms-of-service-and-privacy-policy/auto-terms-of-service-privacy-policy.php\";i:6;s:31:\"cache-enabler/cache-enabler.php\";i:7;s:33:\"classic-editor/classic-editor.php\";i:8;s:37:\"link-whisper-premium/link-whisper.php\";i:9;s:29:\"mainwp-child/mainwp-child.php\";i:10;s:27:\"ninja-forms/ninja-forms.php\";i:11;s:41:\"sassy-social-share/sassy-social-share.php\";i:12;s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";i:13;s:29:\"theme-editor/theme_editor.php\";i:14;s:37:\"wordpress-autoblogging/basic-auth.php\";i:15;s:24:\"wordpress-seo/wp-seo.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','','no'),(40,'template','refresh-blog','yes'),(41,'stylesheet','refresh-blog','yes'),(44,'comment_registration','0','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','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','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','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:5:{i:0;i:83;i:1;i:93;i:2;i:96;i:3;i:102;i:4;i:108;}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:3:{i:1;a:0:{}i:2;a:4:{s:5:\"title\";s:13:\"Subscribe Now\";s:4:\"text\";s:19:\"[ninja_form id=\'2\']\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}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:2:{s:27:\"ninja-forms/ninja-forms.php\";s:21:\"ninja_forms_uninstall\";s:31:\"cache-enabler/cache-enabler.php\";a:2:{i:0;s:13:\"Cache_Enabler\";i:1;s:12:\"on_uninstall\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','64','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','1','yes'),(93,'admin_email_lifespan','1611086661','yes'),(94,'initial_db_version','47018','yes'),(95,'wp_user_roles','a:9:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:38:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}s:24:\"manage_wpautoterms_pages\";a:2:{s:4:\"name\";s:37:\"WPAutoTerms Pages Editor (additional)\";s:12:\"capabilities\";a:10:{s:22:\"edit_wpautoterms_pages\";b:1;s:29:\"edit_others_wpautoterms_pages\";b:1;s:30:\"edit_private_wpautoterms_pages\";b:1;s:32:\"edit_published_wpautoterms_pages\";b:1;s:30:\"read_private_wpautoterms_pages\";b:1;s:24:\"delete_wpautoterms_pages\";b:1;s:31:\"delete_others_wpautoterms_pages\";b:1;s:32:\"delete_private_wpautoterms_pages\";b:1;s:34:\"delete_published_wpautoterms_pages\";b:1;s:25:\"publish_wpautoterms_pages\";b:1;}}s:31:\"manage_wpautoterms_pages_editor\";a:2:{s:4:\"name\";s:33:\"Editor + WPAutoTerms Pages Editor\";s:12:\"capabilities\";a:45:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:22:\"edit_wpautoterms_pages\";b:1;s:29:\"edit_others_wpautoterms_pages\";b:1;s:30:\"edit_private_wpautoterms_pages\";b:1;s:32:\"edit_published_wpautoterms_pages\";b:1;s:30:\"read_private_wpautoterms_pages\";b:1;s:24:\"delete_wpautoterms_pages\";b:1;s:31:\"delete_others_wpautoterms_pages\";b:1;s:32:\"delete_private_wpautoterms_pages\";b:1;s:34:\"delete_published_wpautoterms_pages\";b:1;s:25:\"publish_wpautoterms_pages\";b:1;}}}','yes'),(96,'fresh_site','0','yes'),(97,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:6:\"Search\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'sidebars_widgets','a:7:{s:19:\"wp_inactive_widgets\";a:3:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:5:{i:0;s:8:\"search-2\";i:1;s:17:\"pe_recent_posts-2\";i:2;s:12:\"categories-2\";i:3;s:10:\"calendar-2\";i:4;s:13:\"media_image-2\";}s:8:\"footer-1\";a:1:{i:0;s:13:\"media_image-3\";}s:8:\"footer-2\";a:1:{i:0;s:6:\"text-2\";}s:8:\"footer-3\";a:1:{i:0;s:13:\"media_video-2\";}s:8:\"footer-4\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(103,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'db-version-secure','CIeTeQiS0F','yes'),(105,'tagline','','yes'),(107,'auth_key','wZP:(&$<L8R%~Dd8M[~8&{ZzacleHineS#I^.^{K IjN,nIS6m!Y,ci.d*Jkk)47','no'),(108,'auth_salt','o47u2 P_]d7YRF,a_/T$J~X/8dC@]>BET_6cDX#B+Q79g@Z<~[4p=y@31{vv-tXe','no'),(109,'logged_in_key','GHp^=b}1:Gr/5?I`VcCGyCeeZ`u0b2{gdP.#.BFJI`mCG5;UuYS6ERbGK!f]R}6W','no'),(110,'logged_in_salt','xx)F*d6bg[:OO2o<<&<HAMjGTc`BKBv=--98]_vS%h}3xn*t4n[>,D /DIKfN=0U','no'),(111,'cron','a:17:{i:1680076020;a:1:{s:27:\"wpil_broken_link_check_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"10min\";s:4:\"args\";a:0:{}s:8:\"interval\";i:600;}}}i:1680077063;a:4:{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;}}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:1680077897;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:1680079775;a:2:{s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:20:\"wpseo_home_url_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:1680083133;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1680086180;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1680102881;a:1:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1680120262;a:1:{s:15:\"ebn_optimize_db\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1680120263;a:3:{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;}}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;}}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:1680160557;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:1680161993;a:1:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1680161994;a:1:{s:16:\"wpseo_ryte_fetch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1680162005;a:1:{s:26:\"nf_weekly_promotion_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"nf-weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1680162237;a:1:{s:22:\"nf_marketing_feed_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"nf-weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1680293063;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;}}}i:1682495037;a:1:{s:13:\"nf_optin_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"nf-monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2678400;}}}s:7:\"version\";i:2;}','yes'),(112,'update_day','4','yes'),(113,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_calendar','a:2:{i:2;a:1:{s:5:\"title\";s:8:\"Calendar\";}s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_media_image','a:3:{i:2;a:15:{s:4:\"size\";s:4:\"full\";s:5:\"width\";i:347;s:6:\"height\";i:502;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:1:\"#\";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:13:\"attachment_id\";i:46;s:3:\"url\";s:58:\"http://genomevalley.org/wp-content/uploads/2020/10/897.jpg\";s:5:\"title\";s:9:\"Hyderabad\";}i:3;a:15:{s:4:\"size\";s:4:\"full\";s:5:\"width\";i:512;s:6:\"height\";i:345;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:1:\"#\";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:13:\"attachment_id\";i:47;s:3:\"url\";s:58:\"http://genomevalley.org/wp-content/uploads/2020/10/898.png\";s:5:\"title\";s:10:\"Check This\";}s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_media_video','a:2:{i:2;a:11:{s:7:\"preload\";s:8:\"metadata\";s:4:\"loop\";b:0;s:7:\"content\";s:0:\"\";s:3:\"mp4\";s:0:\"\";s:3:\"m4v\";s:0:\"\";s:4:\"webm\";s:0:\"\";s:3:\"ogv\";s:0:\"\";s:3:\"flv\";s:0:\"\";s:13:\"attachment_id\";i:0;s:3:\"url\";s:43:\"https://www.youtube.com/watch?v=3uFHaDCJqgA\";s:5:\"title\";s:10:\"Watch More\";}s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(122,'nonce_key','Bb3~%BIavg`SzUG0{E3/1M),599(IoDp9?4GX7$|k9@*/M+H?B;a[q3f.la0vs^^','no'),(123,'nonce_salt','cbp$h.-bb>0&z,:cd#&oMDN+[INJ+9ycgfHD_2zb~v%jG]dJX9K~qlCtQ* NYUin','no'),(124,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(132,'current_theme','Refresh Blog','yes'),(135,'theme_mods_shuttle','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1602143137;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:4:{i:0;s:8:\"search-2\";i:1;s:12:\"categories-2\";i:2;s:14:\"recent-posts-2\";i:3;s:11:\"tag_cloud-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(138,'recovery_keys','a:0:{}','yes'),(223,'crawl-delay-value','4','yes'),(313,'disallowed_keys','','no'),(314,'comment_previously_approved','1','yes'),(315,'auto_plugin_theme_update_emails','a:0:{}','no'),(316,'finished_updating_comment_type','1','yes'),(317,'db_upgraded','','yes'),(320,'auto_core_update_notified','a:4:{s:4:\"type\";s:4:\"fail\";s:5:\"email\";s:21:\"[email protected]\";s:7:\"version\";s:5:\"6.0.3\";s:9:\"timestamp\";i:1666048151;}','no'),(1333,'recently_activated','a:0:{}','yes'),(1340,'mk_te_settings_options','a:5:{s:7:\"e_d_t_e\";s:3:\"yes\";s:17:\"code_editor_theme\";s:6:\"cobalt\";s:9:\"e_w_d_t_e\";s:3:\"yes\";s:7:\"e_d_p_e\";s:3:\"yes\";s:9:\"e_w_d_p_e\";s:3:\"yes\";}','yes'),(1354,'wpseo','a:57:{s:8:\"tracking\";b:0;s:22:\"license_server_version\";b:0;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:23:\"home_url_option_changed\";s:29:\"indexables_indexing_completed\";b:1;s:7:\"version\";s:4:\"18.9\";s:16:\"previous_version\";s:4:\"18.8\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1602142794;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:24:\"https://genomevalley.org\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:0:{}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:1;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:0:\"\";s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:0:{}s:36:\"dismiss_configuration_workout_notice\";b:0;s:19:\"importing_completed\";a:0:{}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:18:\"first_time_install\";b:0;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";i:1652258756;}','yes'),(1355,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"18.9\";}','yes'),(1356,'wpseo_titles','a:126:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:23:\"is-media-purge-relevant\";b:0;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"&raquo;\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:22:\"title-wpautoterms_page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:25:\"metadesc-wpautoterms_page\";s:0:\"\";s:24:\"noindex-wpautoterms_page\";b:0;s:35:\"display-metabox-pt-wpautoterms_page\";b:1;s:35:\"post_types-wpautoterms_page-maintax\";i:0;s:33:\"schema-page-type-wpautoterms_page\";s:7:\"WebPage\";s:36:\"schema-article-type-wpautoterms_page\";s:4:\"None\";s:29:\"social-title-wpautoterms_page\";s:9:\"%%title%%\";s:35:\"social-description-wpautoterms_page\";s:0:\"\";s:33:\"social-image-url-wpautoterms_page\";s:0:\"\";s:32:\"social-image-id-wpautoterms_page\";i:0;s:32:\"title-ptarchive-wpautoterms_page\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:35:\"metadesc-ptarchive-wpautoterms_page\";s:0:\"\";s:34:\"bctitle-ptarchive-wpautoterms_page\";s:0:\"\";s:34:\"noindex-ptarchive-wpautoterms_page\";b:0;s:39:\"social-title-ptarchive-wpautoterms_page\";s:21:\"%%pt_plural%% Archive\";s:45:\"social-description-ptarchive-wpautoterms_page\";s:0:\"\";s:43:\"social-image-url-ptarchive-wpautoterms_page\";s:0:\"\";s:42:\"social-image-id-ptarchive-wpautoterms_page\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:0;s:17:\"company_logo_meta\";b:0;s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;}','yes'),(1357,'wpseo_social','a:18:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";}','yes'),(1358,'wpseo_flush_rewrite','1','yes'),(1373,'wpseo_ryte','a:2:{s:6:\"status\";i:-1;s:10:\"last_fetch\";i:1649319446;}','yes'),(1380,'wpautoterms_activated','1','yes'),(1381,'wpautoterms_legal_pages_slug','wpautoterms','yes'),(1382,'wpautoterms_version','2.4.9','yes'),(1383,'widget_wpautoterms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1385,'wpautoterms_links','1','yes'),(1386,'wpautoterms_links_bg_color','#ffffff','yes'),(1387,'wpautoterms_links_font','Arial, sans-serif','yes'),(1388,'wpautoterms_links_font_size','14px','yes'),(1389,'wpautoterms_links_text_color','#cccccc','yes'),(1390,'wpautoterms_links_text_align','center','yes'),(1391,'wpautoterms_links_links_color','#000000','yes'),(1392,'wpautoterms_links_separator','-','yes'),(1393,'wpautoterms_links_target_blank','','yes'),(1394,'wpautoterms_update_notice','','yes'),(1395,'wpautoterms_update_notice_bar_position','top','yes'),(1396,'wpautoterms_update_notice_bar_type','static','yes'),(1397,'wpautoterms_update_notice_disable_logged','yes','yes'),(1398,'wpautoterms_update_notice_duration','3','yes'),(1399,'wpautoterms_update_notice_message','Our <a href=\"[wpautoterms page_link]\">[wpautoterms page_title]</a> has been updated on [wpautoterms last_updated_date].','yes'),(1400,'wpautoterms_update_notice_message_multiple','Our [wpautoterms page_links] have been updated on [wpautoterms last_updated_date].','yes'),(1401,'wpautoterms_update_notice_close_message','Close','yes'),(1402,'wpautoterms_update_notice_bg_color','','yes'),(1403,'wpautoterms_update_notice_font','','yes'),(1404,'wpautoterms_update_notice_font_size','','yes'),(1405,'wpautoterms_update_notice_text_color','','yes'),(1406,'wpautoterms_update_notice_links_color','','yes'),(1407,'wpautoterms_cookies_notice','','yes'),(1408,'wpautoterms_cookies_notice_bar_position','top','yes'),(1409,'wpautoterms_cookies_notice_bar_type','static','yes'),(1410,'wpautoterms_cookies_notice_disable_logged','yes','yes'),(1411,'wpautoterms_cookies_notice_message','We use cookies to ensure that we give you the best experience on our website','yes'),(1412,'wpautoterms_cookies_notice_close_message','Close','yes'),(1413,'wpautoterms_cookies_notice_bg_color','','yes'),(1414,'wpautoterms_cookies_notice_font','','yes'),(1415,'wpautoterms_cookies_notice_font_size','','yes'),(1416,'wpautoterms_cookies_notice_text_color','','yes'),(1417,'wpautoterms_cookies_notice_links_color','','yes'),(1418,'wpautoterms_endorsements','','yes'),(1419,'wpautoterms_endorsements_message','<p>Some of the links in this article are \"affiliate links\", a link with a special tracking code. This means if you click on an affiliate link and purchase the item, we will receive an affiliate commission.</p> <p>The price of the item is the same whether it is an affiliate link or not. Regardless, we only recommend products or services we believe will add value to our readers.</p> <p>By using the affiliate links, you are helping support our Website, and we genuinely appreciate your support.</p>','yes'),(1420,'wpautoterms_endorsements_when','','yes'),(1421,'wpautoterms_endorsements_tag','','yes'),(1422,'wpautoterms_site_name','www.genomevalley.org','yes'),(1423,'wpautoterms_site_url','http://genomevalley.org','yes'),(1424,'wpautoterms_company_name','www.genomevalley.org','yes'),(1425,'wpautoterms_country','','yes'),(1426,'wpautoterms_state','','yes'),(1427,'wpautoterms_show_in_pages_widget','','yes'),(1428,'wpautoterms_cache_plugins_compat','','yes'),(1429,'wpautoterms_license','','yes'),(1430,'wpautoterms_cache_plugins_detection','','yes'),(1431,'wpautoterms_ob_total','1','yes'),(1432,'wpautoterms_ob_not_intercepted','0','yes'),(1433,'widget_pe_recent_posts','a:2:{i:2;a:28:{s:5:\"title\";s:12:\"Recent Posts\";s:9:\"post_type\";s:4:\"post\";s:18:\"post_type_category\";s:8:\"category\";s:13:\"taxonomy_link\";s:1:\"0\";s:12:\"sticky_posts\";s:1:\"0\";s:10:\"title_show\";s:1:\"1\";s:14:\"title_linkable\";s:1:\"1\";s:8:\"readmore\";s:1:\"0\";s:10:\"header_tag\";s:1:\"5\";s:11:\"create_date\";s:1:\"0\";s:6:\"author\";s:1:\"0\";s:13:\"taxonomy_list\";s:1:\"0\";s:19:\"number_of_all_items\";s:2:\"10\";s:17:\"number_of_columns\";s:1:\"1\";s:14:\"one_row_mobile\";s:1:\"0\";s:14:\"number_of_rows\";s:1:\"3\";s:11:\"order_posts\";s:4:\"date\";s:15:\"order_direction\";s:4:\"DESC\";s:14:\"navigation_way\";s:1:\"1\";s:10:\"desc_limit\";s:0:\"\";s:15:\"image_alignment\";s:4:\"left\";s:14:\"show_thumbnail\";s:1:\"1\";s:18:\"thumbnail_linkable\";s:1:\"1\";s:10:\"image_size\";s:9:\"thumbnail\";s:11:\"category_id\";N;s:12:\"grid_spacing\";s:2:\"10\";s:8:\"interval\";s:4:\"5000\";s:12:\"slider_pause\";s:4:\"null\";}s:12:\"_multiwidget\";i:1;}','yes'),(1434,'ninja_forms_oauth_client_secret','kT7mQrnTPa59MmIE9InFaCZP6rYJurOsCauylLVp','yes'),(1435,'ninja_forms_version','3.6.11','yes'),(1436,'ninja_forms_db_version','1.4','no'),(1437,'ninja_forms_required_updates','a:6:{s:19:\"CacheCollateActions\";s:19:\"2020-10-08 07:40:01\";s:17:\"CacheCollateForms\";s:19:\"2020-10-08 07:40:01\";s:18:\"CacheCollateFields\";s:19:\"2020-10-08 07:40:01\";s:19:\"CacheCollateObjects\";s:19:\"2020-10-08 07:40:01\";s:19:\"CacheCollateCleanup\";s:19:\"2020-10-08 07:40:01\";s:25:\"CacheFieldReconcilliation\";s:19:\"2020-10-08 07:40:01\";}','yes'),(1438,'ninja_forms_settings','a:11:{s:11:\"date_format\";s:5:\"m/d/Y\";s:8:\"currency\";s:3:\"USD\";s:18:\"recaptcha_site_key\";s:0:\"\";s:20:\"recaptcha_secret_key\";s:0:\"\";s:14:\"recaptcha_lang\";s:0:\"\";s:19:\"delete_on_uninstall\";i:0;s:21:\"disable_admin_notices\";i:0;s:16:\"builder_dev_mode\";i:0;s:18:\"opinionated_styles\";s:5:\"light\";s:20:\"recaptcha_site_key_3\";s:0:\"\";s:22:\"recaptcha_secret_key_3\";s:0:\"\";}','yes'),(1439,'ninja_forms_zuul','33','no'),(1440,'wp_nf_update_fields_batch_b5b0c0e710c77a49e10045208add2253','a:4:{i:0;a:2:{s:2:\"id\";i:1;s:8:\"settings\";a:70:{s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:4:\"name\";s:9:\"parent_id\";i:1;s:4:\"type\";s:7:\"textbox\";s:10:\"created_at\";s:19:\"2020-10-08 07:40:01\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:5:\"order\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3277\";}}i:1;a:2:{s:2:\"id\";i:2;s:8:\"settings\";a:62:{s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:5:\"email\";s:9:\"parent_id\";i:1;s:4:\"type\";s:5:\"email\";s:10:\"created_at\";s:19:\"2020-10-08 07:40:02\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:5:\"order\";s:1:\"2\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3281\";}}i:2;a:2:{s:2:\"id\";i:3;s:8:\"settings\";a:71:{s:5:\"label\";s:7:\"Message\";s:3:\"key\";s:7:\"message\";s:9:\"parent_id\";i:1;s:4:\"type\";s:8:\"textarea\";s:10:\"created_at\";s:19:\"2020-10-08 07:40:02\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:5:\"order\";s:1:\"3\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:12:\"textarea_rte\";s:0:\"\";s:18:\"disable_rte_mobile\";s:0:\"\";s:14:\"textarea_media\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3284\";}}i:3;a:2:{s:2:\"id\";i:4;s:8:\"settings\";a:69:{s:5:\"label\";s:6:\"Submit\";s:3:\"key\";s:6:\"submit\";s:9:\"parent_id\";i:1;s:4:\"type\";s:6:\"submit\";s:10:\"created_at\";s:19:\"2020-10-08 07:40:02\";s:16:\"processing_label\";s:10:\"Processing\";s:5:\"order\";s:1:\"5\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:44:\"submit_element_hover_styles_background-color\";s:0:\"\";s:34:\"submit_element_hover_styles_border\";s:0:\"\";s:40:\"submit_element_hover_styles_border-style\";s:0:\"\";s:40:\"submit_element_hover_styles_border-color\";s:0:\"\";s:33:\"submit_element_hover_styles_color\";s:0:\"\";s:34:\"submit_element_hover_styles_height\";s:0:\"\";s:33:\"submit_element_hover_styles_width\";s:0:\"\";s:37:\"submit_element_hover_styles_font-size\";s:0:\"\";s:34:\"submit_element_hover_styles_margin\";s:0:\"\";s:35:\"submit_element_hover_styles_padding\";s:0:\"\";s:35:\"submit_element_hover_styles_display\";s:0:\"\";s:33:\"submit_element_hover_styles_float\";s:0:\"\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"0\";s:36:\"submit_element_hover_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3287\";}}}','no'),(1442,'widget_ninja_forms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1443,'ninja-forms-views-secret','lgME8PCyc0s1hnZXthCCn70jQHnMYi2T5Pl1vu52','yes'),(1444,'ninja_forms_needs_updates','0','yes'),(1445,'nf_admin_notice','a:1:{s:16:\"one_week_support\";a:2:{s:5:\"start\";s:10:\"10/15/2020\";s:3:\"int\";i:7;}}','yes'),(1447,'nf_active_promotions','{\"dashboard\":[{\"id\":\"personal-20\",\"location\":\"dashboard\",\"type\":\"personal\",\"content\":\"<a href=\\\"https:\\/\\/ninjaforms.com\\/personal-membership\\/?utm_source=ninja-forms-plugin&utm_medium=dashboard-banner-ad&utm_campaign=personal-banner-ad&utm_content=personal-20\\\" target=\\\"_blank\\\" class=\\\"nf-remove-promo-styling\\\"><img src=\\\"https:\\/\\/genomevalley.org\\/wp-content\\/plugins\\/ninja-forms\\/assets\\/img\\/promotions\\/dashboard-banner-personal-20.png\\\"><\\/a>\",\"script\":\"\"},{\"id\":\"personal-50\",\"location\":\"dashboard\",\"type\":\"personal\",\"content\":\"<a href=\\\"https:\\/\\/ninjaforms.com\\/personal-membership\\/?utm_source=ninja-forms-plugin&utm_medium=dashboard-banner-ad&utm_campaign=personal-banner-ad&utm_content=personal-50\\\" target=\\\"_blank\\\" class=\\\"nf-remove-promo-styling\\\"><img src=\\\"https:\\/\\/genomevalley.org\\/wp-content\\/plugins\\/ninja-forms\\/assets\\/img\\/promotions\\/dashboard-banner-personal-50.png\\\"><\\/a>\",\"script\":\"\"},{\"id\":\"sendwp-banner\",\"location\":\"dashboard\",\"content\":\"<span aria-label=\\\"SendWP. Getting WordPress email into an inbox shouldn\'t be that hard! Never miss another receipt, form submission, or any WordPress email ever again.\\\" style=\\\"cursor:pointer;width:800px;height:83px;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;background-image:url(\'https:\\/\\/genomevalley.org\\/wp-content\\/plugins\\/ninja-forms\\/assets\\/img\\/promotions\\/dashboard-banner-sendwp.png\');display:block;\\\"><\\/span>\",\"type\":\"sendwp\",\"script\":\"\\n      setTimeout(function(){ \\/* Wait for services to init. *\\/\\n        var data = {\\n          width: 450,\\n          closeOnClick: \'body\',\\n          closeOnEsc: true,\\n          content: \'<p><h2>Frustrated that WordPress email isn\\u2019t being received?<\\/h2><p>Form submission notifications not hitting your inbox? Some of your visitors getting form feedback via email, others not? By default, your WordPress site sends emails through your web host, which can be unreliable. Your host has spent lots of time and money optimizing to serve your pages, not send your emails.<\\/p><h3>Sign up for SendWP today, and never deal with WordPress email issues again!<\\/h3><p>SendWP is an email service that removes your web host from the email equation.<\\/p><ul style=&quot;list-style-type:initial;margin-left: 20px;&quot;><li>Sends email through dedicated email service, increasing email deliverability.<\\/li><li>Keeps form submission emails out of spam by using a trusted email provider.<\\/li><li>On a shared web host? Don\\u2019t worry about emails being rejected because of blocked IP addresses.<\\/li><li><strong>$1 for the first month. $9\\/month after. Cancel anytime!<\\/strong><\\/li><\\/ul><\\/p><br \\/>\',\\n          btnPrimary: {\\n            text: \'Sign me up!\',\\n            callback: function() {\\n              var spinner = document.createElement(\'span\');\\n              spinner.classList.add(\'dashicons\', \'dashicons-update\', \'dashicons-update-spin\');\\n              var w = this.offsetWidth;\\n              this.innerHTML = spinner.outerHTML;\\n              this.style.width = w+\'px\';\\n              ninja_forms_sendwp_remote_install();\\n            }\\n          },\\n          btnSecondary: {\\n            text: \'Cancel\',\\n            callback: function() {\\n              sendwpModal.toggleModal(false);\\n            }\\n          }\\n        }\\n        var sendwpModal = new NinjaModal(data);\\n      }, 500);\\n    \"}]}','no'),(1452,'ninja_forms_optin_reported','1','yes'),(1453,'ninja_forms_addons_feed','[{\"title\":\"Multi Step Forms\",\"image\":\"assets\\/img\\/add-ons\\/multi-step-forms.png\",\"content\":\"Give submissions a boost on any longer form by making it a multi-page form. Drag and drop fields between pages, add breadcrumb navigation, a progress bar, and loads more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/multi-step-forms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Multi+Step+Forms\",\"plugin\":\"ninja-forms-multi-part\\/multi-part.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/multi-step-forms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Multi+Step+Forms+Docs\",\"version\":\"3.0.26\",\"categories\":[{\"name\":\"Look &amp; Feel\",\"slug\":\"look-feel\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"}]},{\"title\":\"Front-End Posting\",\"image\":\"assets\\/img\\/add-ons\\/front-end-posting.png\",\"content\":\"Let users publish content just by submitting a form! Completely configurable including post type, title, even categories and tags. Set post status, author, and much more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/post-creation\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Front-End+Posting\",\"plugin\":\"ninja-forms-post-creation\\/ninja-forms-post-creation.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/post-creation\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Front-End+Posting+Docs\",\"version\":\"3.0.10\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Mailchimp\",\"image\":\"assets\\/img\\/add-ons\\/mailchimp.png\",\"content\":\"Bring new life to your lists with upgraded Mailchimp signup forms for WordPress! Easy to build and customize with no code required. Link to lists and interest groups!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/mailchimp\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Mailchimp\",\"plugin\":\"ninja-forms-mail-chimp\\/ninja-forms-mail-chimp.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/mailchimp\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Mailchimp+Docs\",\"version\":\"3.3.6\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Campaign Monitor\",\"image\":\"assets\\/img\\/add-ons\\/campaign-monitor.png\",\"content\":\"Make any form a custom crafted WordPress signup form for Campaign Monitor. Connect to any list, link form fields to list fields, and watch your lists grow!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/campaign-monitor\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Campaign+Monitor\",\"plugin\":\"ninja-forms-campaign-monitor\\/ninja-forms-campaign-monitor.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/campaign-monitor\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Campaign+Monitor+Docs\",\"version\":\"3.0.6\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"User Analytics\",\"image\":\"assets\\/img\\/add-ons\\/user-analytics.png\",\"content\":\"Get better data on where your form traffic is coming from with every submission. Add 12+ analytics fields including UTM values,  URL referrer, geo data, and more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/user-analytics\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Analytics\",\"plugin\":\"ninja-forms-user-analytics\\/ninja-forms-user-analytics.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/user-analytics\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Analytics+Docs\",\"version\":\"3.0.2\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Constant Contact\",\"image\":\"assets\\/img\\/add-ons\\/constant-contact.png\",\"content\":\"Connect WordPress to Constant Contact with forms that you can build and design just the way you want, no tech skills required! Subscribe users to any list or interest group.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/constant-contact\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Constant+Contact\",\"plugin\":\"ninja-forms-constant-contact\\/ninja-forms-constant-contact.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/constant-contact\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Constant+Contact+Docs\",\"version\":\"3.1.0\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"AWeber\",\"image\":\"assets\\/img\\/add-ons\\/aweber.png\",\"content\":\"Build your lists faster with easy to design, professional quality WordPress signup forms. No technical skills required. Connect WordPress to AWeber with style!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/aweber\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=AWeber\",\"plugin\":\"ninja-forms-aweber\\/ninja-forms-aweber.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/aweber\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=AWeber+Docs\",\"version\":\"3.2.0\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"PayPal Express\",\"image\":\"assets\\/img\\/add-ons\\/paypal-express.png\",\"content\":\"Set up any form to accept PayPal payments with PayPal Express for WordPress! Base totals on a fixed amount, user entered amount, or a calculated total.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/paypal-express\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PayPal+Express\",\"plugin\":\"ninja-forms-paypal-express\\/ninja-forms-paypal-express.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/paypal-express\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PayPal+Express+Docs\",\"version\":\"3.1.3\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"MailPoet\",\"image\":\"assets\\/img\\/add-ons\\/mailpoet.png\",\"content\":\"Say hello better! Customize your MailPoet signup forms to draw more subscribers than ever before. Connect WordPress to any MailPoet list in minutes!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/mailpoet\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=MailPoet\",\"plugin\":\"ninja-forms-mailpoet\\/nf-mailpoet.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/mailpoet\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=MailPoet+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Zoho CRM\",\"image\":\"assets\\/img\\/add-ons\\/zoho-crm.png\",\"content\":\"Customize your forms to get the most out of your connection between WordPress and Zoho. Link form fields directly to Zoho fields, custom fields included, from almost any module.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/zoho-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zoho+CRM\",\"plugin\":\"ninja-forms-zoho-crm\\/ninja-forms-zoho-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/zoho-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zoho+CRM+Docs\",\"version\":\"3.5.0\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Capsule CRM\",\"image\":\"assets\\/img\\/add-ons\\/capsule-crm.png\",\"content\":\"Boost conversions from WordPress to Capsule with forms tailor made to your audience. Link form fields to Capsule fields from a wide range of modules. Custom fields too!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/capsule-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Capsule+CRM\",\"plugin\":\"ninja-forms-capsule-crm\\/ninja-forms-capsule-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/capsule-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Capsule+CRM+Docs\",\"version\":\"3.4.4\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Insightly CRM\",\"image\":\"assets\\/img\\/add-ons\\/insightly-crm.png\",\"content\":\"Your customer\'s journey begins with your WordPress forms. Send Contacts, Leads, Opportunities, Custom fields and more seamlessly from WordPress to Insightly!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/insightly-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Insightly+CRM\",\"plugin\":\"ninja-forms-insightly-crm\\/ninja-forms-insightly-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/insightly-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Insightly+CRM+Docs\",\"version\":\"3.2.1\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Trello\",\"image\":\"assets\\/img\\/add-ons\\/trello.png\",\"content\":\"Create a new Trello card with data from any WordPress form submission. Map fields to card details, assign members and labels, upload images, embed links.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/trello\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Trello\",\"plugin\":\"ninja-forms-trello\\/ninja-forms-trello.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/trello\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Trello+Docs\",\"version\":\"3.0.4\",\"categories\":[{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"}]},{\"title\":\"Elavon\",\"image\":\"assets\\/img\\/add-ons\\/elavon.png\",\"content\":\"Accept credit card payments from any of your WordPress forms. Pass customer and invoice info from any field securely into Elavon with each payment.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/elavon\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Elavon\",\"plugin\":\"ninja-forms-elavon-payment-gateway\\/ninja-forms-elavon-payment-gateway.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/elavon\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Elavon+Docs\",\"version\":\"3.1.2\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Zapier\",\"image\":\"assets\\/img\\/add-ons\\/zapier.png\",\"content\":\"Don\'t see an add-on integration for a service you love? Don\'t worry! Connect WordPress to more than 4,000 different services through Zapier, no code required!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/zapier\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zapier\",\"plugin\":\"ninja-forms-zapier\\/ninja-forms-zapier.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/zapier\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zapier+Docs\",\"version\":\"3.0.9\",\"categories\":[{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Custom Integrations\",\"slug\":\"custom-integrations\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"}]},{\"title\":\"Salesforce CRM\",\"image\":\"assets\\/img\\/add-ons\\/salesforce-crm.png\",\"content\":\"Easily map any form field to any Salesforce Object or Field. A better connection to your customers begins with a better WordPress form builder!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/salesforce-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Salesforce+CRM\",\"plugin\":\"ninja-forms-salesforce-crm\\/ninja-forms-salesforce-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/salesforce-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Salesforce+CRM+Docs\",\"version\":\"3.3.2\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Slack\",\"image\":\"assets\\/img\\/add-ons\\/slack.png\",\"content\":\"Get realtime Slack notifications in the workspace and channel of your choice with any new WordPress form submission. @Mention any team member!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/slack\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Slack\",\"plugin\":\"ninja-forms-slack\\/ninja-forms-slack.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/slack\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Slack+Docs\",\"version\":\"3.0.3\",\"categories\":[{\"name\":\"Notifications\",\"slug\":\"notifications\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"}]},{\"title\":\"CleverReach\",\"image\":\"assets\\/img\\/add-ons\\/cleverreach.png\",\"content\":\"Grow the reach of your email marketing with better CleverReach signup forms. Tailor your forms to your audience with this easy to set up integration!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/cleverreach\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=CleverReach\",\"plugin\":\"ninja-forms-cleverreach\\/ninja-forms-cleverreach.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/cleverreach\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=CleverReach+Docs\",\"version\":\"3.1.6\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Webhooks\",\"image\":\"assets\\/img\\/add-ons\\/webhooks.png\",\"content\":\"Can\'t find a WordPress integration for the service you love? Send WordPress forms data to any external URL using a simple GET or POST request!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/webhooks\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Webhooks\",\"plugin\":\"ninja-forms-webhooks\\/ninja-forms-webhooks.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/webhooks\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Webhooks+Docs\",\"version\":\"3.0.6\",\"categories\":[{\"name\":\"Notifications\",\"slug\":\"notifications\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Custom Integrations\",\"slug\":\"custom-integrations\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Excel Export\",\"image\":\"assets\\/img\\/add-ons\\/excel-export.png\",\"content\":\"Export any form\'s submissions as a Microsoft Excel spreadsheet. Choose a date range, the fields you want to include, and export to Excel! \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/excel-export\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Excel+Export\",\"plugin\":\"ninja-forms-excel-export\\/ninja-forms-excel-export.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/excel-export\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Excel+Export+Docs\",\"version\":\"3.3.5\",\"categories\":[{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"}]},{\"title\":\"Formstack Documents\",\"image\":\"assets\\/img\\/add-ons\\/webmerge.png\",\"content\":\"Create specifically formatted templates from an uploaded PDF or Word document, then auto-fill them from any WordPress form submission!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/webmerge\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Formstack+Documents\",\"plugin\":\"ninja-forms-webmerge\\/ninja-forms-webmerge.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/webmerge\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Formstack+Documents+Docs\",\"version\":\"3.0.3\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Help Scout\",\"image\":\"assets\\/img\\/add-ons\\/help-scout.png\",\"content\":\"Offering great support is hard. Tailor your WordPress forms to match your customers\' needs with this Help Scout integration for WordPress.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/help-scout\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Help+Scout\",\"plugin\":null,\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/help-scout\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Help+Scout+Docs\",\"version\":\"3.1.3\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Emma\",\"image\":\"assets\\/img\\/add-ons\\/emma.png\",\"content\":\"Take your email marketing further with handcrafted, easy to build signup forms that connect directly into your Emma account! \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/emma\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Emma\",\"plugin\":\"ninja-forms-emma\\/ninja-forms-emma.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/emma\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Emma+Docs\",\"version\":\"3.0.4\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"ClickSend SMS\",\"image\":\"assets\\/img\\/add-ons\\/clicksend-sms.png\",\"content\":\"Get instant SMS notifications with every new WordPress form submission. Respond to leads faster and make more personal connections!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/clicksend-sms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ClickSend+SMS\",\"plugin\":\"ninja-forms-clicksend\\/ninja-forms-clicksend.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/clicksend-sms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ClickSend+SMS+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"SMS Notifications\",\"slug\":\"sms-notifications\"}]},{\"title\":\"Twilio SMS\",\"image\":\"assets\\/img\\/add-ons\\/twilio-sms.png\",\"content\":\"Get instant SMS notifications with every new WordPress form submission. Respond to leads faster and make more personal connections!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/twilio\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Twilio+SMS\",\"plugin\":\"ninja-forms-twilio\\/ninja-forms-twilio.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/twilio\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Twilio+SMS+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"SMS Notifications\",\"slug\":\"sms-notifications\"}]},{\"title\":\"Recurly\",\"image\":\"assets\\/img\\/add-ons\\/recurly.png\",\"content\":\"Subscription plans a part of your business model? Let your users subscribe from any WordPress form & make management easier with Recurly!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/recurly\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Recurly\",\"plugin\":\"ninja-forms-recurly\\/ninja-forms-recurly.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/recurly\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Recurly+Docs\",\"version\":\"3.0.5\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Save Progress\",\"image\":\"assets\\/img\\/add-ons\\/save-progress.png\",\"content\":\"Let your users save their work and reload it all when they have time to return. Don\'t lose out on valuable submissions for longer forms!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/save-progress\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Save+Progress\",\"plugin\":\"ninja-forms-save-progress\\/ninja-forms-save-progress.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/save-progress\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Save+Progress+Docs\",\"version\":\"3.0.27\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"EmailOctopus\",\"image\":\"assets\\/img\\/add-ons\\/emailoctopus.png\",\"content\":\"Pair WordPress\' best drag and drop form builder with your EmailOctopus account for incredibly effective signup forms. Easy, complete integration.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/emailoctopus\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=EmailOctopus\",\"plugin\":\"ninja-forms-emailoctopus\\/ninja-forms-emailoctopus.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/emailoctopus\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=EmailOctopus+Docs\",\"version\":\"3.0.0\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Pipeline CRM\",\"image\":\"assets\\/img\\/add-ons\\/pipelinedeals-crm.png\",\"content\":\"Complete, effortless integration with Pipeline CRM. Increase the flow of leads into your sales pipeline with upgraded lead generation forms!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/pipelinedeals-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Pipeline+CRM\",\"plugin\":\"ninja-forms-zoho-crm\\/zoho-integration.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/pipelinedeals-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Pipeline+CRM+Docs\",\"version\":\"3.0.2\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"ConvertKit\",\"image\":\"assets\\/img\\/add-ons\\/convertkit.png\",\"content\":\"Connect WordPress to your ConvertKit account with completely customizable opt-in forms. Watch your audience & sales grow like never before!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/convertkit\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ConvertKit\",\"plugin\":\"ninja-forms-convertkit\\/ninja-forms-convertkit.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/convertkit\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ConvertKit+Docs\",\"version\":\"3.1.1\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"OnePageCRM\",\"image\":\"assets\\/img\\/add-ons\\/onepage-crm.png\",\"content\":\"Integrate WordPress with OnePage CRM seamlessly through highly customizable WordPress forms. Make better conversions <em>your<\\/em> Next Action!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/onepage-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=OnePageCRM\",\"plugin\":\"ninja-forms-onepage-crm\\/ninja-forms-onepage-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/onepage-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=OnePageCRM+Docs\",\"version\":\"3.0.4\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"ActiveCampaign\",\"image\":\"assets\\/img\\/add-ons\\/active-campaign.png\",\"content\":\"Design custom forms that link perfectly to your ActiveCampaign account for the ultimate in marketing automation. Better leads begin here!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/activecampaign\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ActiveCampaign\",\"plugin\":\"ninja-forms-active-campaign\\/ninja-forms-active-campaign.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/activecampaign\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ActiveCampaign+Docs\",\"version\":\"3.1.2\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Agency Membership\",\"image\":\"assets\\/img\\/add-ons\\/ninja-forms-membership-bundle-2.png\",\"content\":\"Get every single Ninja Forms add-ons, at an amazingly discounted price.\",\"link\":\"https:\\/\\/ninjaforms.com\\/documentation\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Agency+Membership\",\"plugin\":null,\"docs\":\"https:\\/\\/ninjaforms.com\\/documentation\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Agency+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":\"Deprecated\",\"slug\":\"deprecated\"}]},{\"title\":\"Personal Membership\",\"image\":\"assets\\/img\\/add-ons\\/individual-membership-2.png\",\"content\":\"Get our most popular add-ons at an amazingly discounted price. Perfect for the single site owner.\",\"link\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Personal+Membership\",\"plugin\":null,\"docs\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Personal+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":\"Deprecated\",\"slug\":\"deprecated\"}]},{\"title\":\"Professional Membership\",\"image\":\"assets\\/img\\/add-ons\\/professional-membership-2.png\",\"content\":\"Get our 4 most popular add-ons at an amazingly discounted price. Perfect for your Do It Yourself business owner.\",\"link\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Professional+Membership\",\"plugin\":null,\"docs\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Professional+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":\"Deprecated\",\"slug\":\"deprecated\"}]},{\"title\":\"Basic Membership\",\"image\":\"assets\\/img\\/add-ons\\/basic-membership.png\",\"content\":\"\",\"link\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Basic+Membership\",\"plugin\":null,\"docs\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Basic+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":null,\"slug\":null}]},{\"title\":\"Plus Membership\",\"image\":\"assets\\/img\\/add-ons\\/plus-membership.png\",\"content\":\"\",\"link\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Plus+Membership\",\"plugin\":null,\"docs\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Plus+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":null,\"slug\":null}]},{\"title\":\"Pro Membership\",\"image\":\"assets\\/img\\/add-ons\\/pro-membership.png\",\"content\":\"\",\"link\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Pro+Membership\",\"plugin\":null,\"docs\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Pro+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":null,\"slug\":null}]},{\"title\":\"Elite Membership\",\"image\":\"assets\\/img\\/add-ons\\/elite-membership.png\",\"content\":\"\",\"link\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Elite+Membership\",\"plugin\":null,\"docs\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Elite+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":null,\"slug\":null}]},{\"title\":\"Scheduled Submissions Export\",\"image\":\"assets\\/img\\/add-ons\\/scheduled-submissions-export.png\",\"content\":\"Use Scheduled Submissions Export to set hourly, daily, or weekly exports of any WordPress form submissions to any email address(es)!\",\"link\":\" https:\\/\\/ninjaforms.com\\/extensions\\/scheduled-submissions-export\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Scheduled+Submissions+Export\",\"plugin\":\"ninja-forms-scheduled-exports\\/ninja-forms-scheduled-exports.php\",\"docs\":\" https:\\/\\/ninjaforms.com\\/docs\\/scheduled-submissions-export\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Scheduled+Submissions+Export+Docs\",\"version\":\"3.0.3\",\"categories\":[{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"}]},{\"title\":\"CiviCRM\",\"image\":\"assets\\/img\\/add-ons\\/civicrm.png\",\"content\":\"Connect & update your CiviCRM account from any WordPress form with the Ninja Forms CiviCRM add-on. Easily add or update Contacts & Activities!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/civicrm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=CiviCRM\",\"plugin\":\"ninja-forms-civicrm\\/ninja-forms-civicrm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/civicrm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=CiviCRM+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"File Uploads\",\"image\":\"assets\\/img\\/add-ons\\/file-uploads.png\",\"content\":\"Add file upload fields to any WordPress form. Set allowed file types, sizes, upload directories and save to WordPress, Google Drive and more.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/file-uploads\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=File+Uploads\",\"plugin\":\"ninja-forms-uploads\\/file-uploads.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/file-uploads\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=File+Uploads+Docs\",\"version\":\"3.3.14\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"}]},{\"title\":\"User Management\",\"image\":\"assets\\/img\\/add-ons\\/user-management.png\",\"content\":\"Let users register, login, & manage profiles with customizable form templates. Allow user roles to view or edit form submissions. \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/user-management\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Management\",\"plugin\":\"ninja-forms-user-management\\/ninja-forms-user-management.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/user-management\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Management+Docs\",\"version\":\"3.2.0\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Layout and Styles\",\"image\":\"assets\\/img\\/add-ons\\/layout-styles.png\",\"content\":\"Edit form styles. Create two column forms. Multi column forms. Easily adjust form layout. You don\'t need a designer, just Layout and Styles!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/layouts-and-styles\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Layout+and+Styles\",\"plugin\":\"ninja-forms-style\\/ninja-forms-style.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/layouts-and-styles\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Layout+and+Styles+Docs\",\"version\":\"3.0.29\",\"categories\":[{\"name\":\"Look &amp; Feel\",\"slug\":\"look-feel\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"}]},{\"title\":\"Stripe\",\"image\":\"assets\\/img\\/add-ons\\/stripe.png\",\"content\":\"Use Stripe Checkout forms to sell products or subscriptions. Accept credit cards, Google Pay, Apple Pay, & much more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/stripe\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Stripe\",\"plugin\":\"ninja-forms-stripe\\/ninja-forms-stripe.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/stripe\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Stripe+Docs\",\"version\":\"3.2.4\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Conditional Logic\",\"image\":\"assets\\/img\\/add-ons\\/conditional-logic.png\",\"content\":\"Create forms that change as they\'re filled out. Show and hide fields, modify lists, send email to different recipients conditionally and much more.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/conditional-logic\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Conditional+Logic\",\"plugin\":\"ninja-forms-conditionals\\/conditionals.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/conditional-logic\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Conditional+Logic+Docs\",\"version\":\"3.1\",\"categories\":[{\"name\":\"Look &amp; Feel\",\"slug\":\"look-feel\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"}]},{\"title\":\"PDF Form Submission\",\"image\":\"assets\\/img\\/add-ons\\/pdf-form-submission.png\",\"content\":\"Use PDF Form Submission to generate a PDF from any WordPress form submission. Create a fully customizable, fillable PDF from top to bottom!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/pdf\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PDF+Form+Submission\",\"plugin\":\"ninja-forms-pdf-submissions\\/nf-pdf-submissions.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/pdf\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PDF+Form+Submission+Docs\",\"version\":\"3.2.1\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"}]}]','no'),(1458,'theme_mods_refresh-blog','a:6:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:7:\"primary\";i:6;s:6:\"social\";i:7;s:7:\"topleft\";i:8;}s:18:\"custom_css_post_id\";i:49;s:13:\"theme_options\";a:5:{s:13:\"post_slider_1\";s:1:\"8\";s:13:\"post_slider_2\";s:1:\"5\";s:17:\"hide_blog_content\";b:0;s:20:\"archive_content_type\";s:12:\"full_content\";s:11:\"back_to_top\";b:1;}s:12:\"header_image\";s:66:\"http://genomevalley.org/wp-content/uploads/2020/10/cropped-899.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:75;s:3:\"url\";s:66:\"http://genomevalley.org/wp-content/uploads/2020/10/cropped-899.jpg\";s:13:\"thumbnail_url\";s:66:\"http://genomevalley.org/wp-content/uploads/2020/10/cropped-899.jpg\";s:6:\"height\";i:288;s:5:\"width\";i:1000;}}','yes'),(1459,'theme_switched','','yes'),(1460,'widget_refresh_blog_author_profile_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1465,'wpautoterms_cache_plugins_detected','1','yes'),(1466,'nf_form_tel_data','1','no'),(1467,'ninja_forms_do_not_allow_tracking','1','yes'),(1468,'nf_sub_expiration','a:0:{}','yes'),(1470,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(1473,'nf_form_tel_sent','true','no'),(1484,'theme_editor_email_verified_1','yes','yes'),(1488,'heateor_sss','a:78:{s:24:\"horizontal_sharing_shape\";s:9:\"rectangle\";s:23:\"horizontal_sharing_size\";s:2:\"35\";s:24:\"horizontal_sharing_width\";s:2:\"80\";s:25:\"horizontal_sharing_height\";s:2:\"45\";s:24:\"horizontal_border_radius\";s:1:\"5\";s:29:\"horizontal_font_color_default\";s:0:\"\";s:32:\"horizontal_sharing_replace_color\";s:4:\"#fff\";s:27:\"horizontal_font_color_hover\";s:0:\"\";s:38:\"horizontal_sharing_replace_color_hover\";s:4:\"#fff\";s:27:\"horizontal_bg_color_default\";s:0:\"\";s:25:\"horizontal_bg_color_hover\";s:0:\"\";s:31:\"horizontal_border_width_default\";s:0:\"\";s:31:\"horizontal_border_color_default\";s:0:\"\";s:29:\"horizontal_border_width_hover\";s:0:\"\";s:29:\"horizontal_border_color_hover\";s:0:\"\";s:27:\"horizontal_counter_position\";s:6:\"bottom\";s:22:\"vertical_sharing_shape\";s:6:\"square\";s:21:\"vertical_sharing_size\";s:2:\"40\";s:22:\"vertical_sharing_width\";s:2:\"80\";s:23:\"vertical_sharing_height\";s:2:\"40\";s:22:\"vertical_border_radius\";s:1:\"5\";s:27:\"vertical_font_color_default\";s:0:\"\";s:30:\"vertical_sharing_replace_color\";s:4:\"#fff\";s:25:\"vertical_font_color_hover\";s:0:\"\";s:36:\"vertical_sharing_replace_color_hover\";s:4:\"#fff\";s:25:\"vertical_bg_color_default\";s:0:\"\";s:23:\"vertical_bg_color_hover\";s:0:\"\";s:29:\"vertical_border_width_default\";s:0:\"\";s:29:\"vertical_border_color_default\";s:0:\"\";s:27:\"vertical_border_width_hover\";s:0:\"\";s:27:\"vertical_border_color_hover\";s:0:\"\";s:25:\"vertical_counter_position\";s:4:\"left\";s:10:\"hor_enable\";s:1:\"1\";s:21:\"horizontal_target_url\";s:7:\"default\";s:28:\"horizontal_target_url_custom\";s:0:\"\";s:5:\"title\";s:0:\"\";s:18:\"instagram_username\";s:0:\"\";s:16:\"youtube_username\";s:0:\"\";s:20:\"comment_container_id\";s:7:\"respond\";s:23:\"horizontal_re_providers\";a:6:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:6:\"reddit\";i:3;s:8:\"linkedin\";i:4;s:5:\"email\";i:5;s:9:\"pinterest\";}s:21:\"hor_sharing_alignment\";s:6:\"center\";s:6:\"bottom\";s:1:\"1\";s:4:\"home\";s:1:\"1\";s:4:\"post\";s:1:\"1\";s:15:\"vertical_enable\";s:1:\"1\";s:19:\"vertical_target_url\";s:7:\"default\";s:26:\"vertical_target_url_custom\";s:0:\"\";s:27:\"vertical_instagram_username\";s:0:\"\";s:25:\"vertical_youtube_username\";s:0:\"\";s:29:\"vertical_comment_container_id\";s:7:\"respond\";s:21:\"vertical_re_providers\";a:6:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:6:\"reddit\";i:3;s:8:\"linkedin\";i:4;s:5:\"email\";i:5;s:9:\"pinterest\";}s:11:\"vertical_bg\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:11:\"left_offset\";s:3:\"-10\";s:12:\"right_offset\";s:3:\"-10\";s:10:\"top_offset\";s:3:\"100\";s:13:\"vertical_home\";s:1:\"1\";s:13:\"vertical_post\";s:1:\"1\";s:13:\"vertical_page\";s:1:\"1\";s:19:\"hide_mobile_sharing\";s:1:\"1\";s:21:\"vertical_screen_width\";s:3:\"783\";s:21:\"bottom_mobile_sharing\";s:1:\"1\";s:23:\"horizontal_screen_width\";s:3:\"783\";s:23:\"bottom_sharing_position\";s:1:\"0\";s:24:\"bottom_sharing_alignment\";s:4:\"left\";s:29:\"bottom_sharing_position_radio\";s:10:\"responsive\";s:6:\"fb_key\";s:0:\"\";s:9:\"fb_secret\";s:0:\"\";s:13:\"footer_script\";s:1:\"1\";s:14:\"delete_options\";s:1:\"1\";s:31:\"share_count_cache_refresh_count\";s:2:\"10\";s:30:\"share_count_cache_refresh_unit\";s:7:\"minutes\";s:18:\"bitly_access_token\";s:0:\"\";s:8:\"language\";s:5:\"en_US\";s:16:\"twitter_username\";s:0:\"\";s:15:\"buffer_username\";s:0:\"\";s:10:\"amp_enable\";s:1:\"1\";s:10:\"custom_css\";s:0:\"\";}','yes'),(1489,'heateor_sss_version','3.3.42','yes'),(1492,'widget_heateor_sss_sharing','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1493,'widget_heateor_sss_floating_sharing','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1494,'widget_heateor_sss_follow','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(3910,'auto_update_core_dev','enabled','yes'),(3911,'auto_update_core_minor','enabled','yes'),(3912,'auto_update_core_major','unset','yes'),(7512,'https_detection_errors','a:0:{}','yes'),(9030,'secure_auth_key','pbS<hDq6j}.jk5n+j=c;IP6M.#bMf]+nh0D b|HDNNjfi-g1>=]<}fNGrF%wm}p`','no'),(9031,'secure_auth_salt','n[g5tJmpBd,*]3?GfiB*EFM7lI75XHMstk#P^){Ctw+jp+! LobqGD&aAk)9ubR`','no'),(9068,'mainwp_child_update_version','1.5','yes'),(9069,'mainwp_child_plugin_version','4.2.3','yes'),(9070,'mainwp_child_auth','a:7:{i:5;s:32:\"5d4c61d6a0b66a2455c75d418511cdb0\";s:4:\"last\";i:1680050105;i:4;s:32:\"b2a1a3e8e173304995a84a5de80d7f36\";i:3;s:32:\"85e93c799d67a5f12ef1edf7972193fc\";i:2;s:32:\"0c87d80b56c5aa71615e8235a70d86d5\";i:1;s:32:\"c5407976a76affdc432f129328601d54\";i:0;s:32:\"7fee8f24e95480ac03fa0db6e0baab23\";}','yes'),(9071,'mainwp_child_branding_settings','a:4:{s:13:\"contact_label\";s:15:\"Contact Support\";s:18:\"cancelled_branding\";b:0;s:23:\"branding_preserve_title\";s:0:\"\";s:21:\"branding_disconnected\";s:0:\"\";}','no'),(9072,'mainwp_child_activated_once','1','no'),(9074,'mainwp_child_pubkey','LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUF1WGVYWjB5UkZ4QWdoY25qV2Y4UwpYUEVubDd2K1QwOUMrMUVqWUJRaWxBR3ZuVXJEbVU0RDI5ZEVJSU1pTUg0OWtmVkN6TGg2WFRKRDBtd29mbnptCkIxOGJXTjFQSU1GQVdtVEZjSEFzalNwbUNVd3dYa3JxT2p2OWQ1Wkh0ekRNbmhPRkY5VUh6TDFKQ0RoT0lod0gKc2xBaENEaTdjMFByQlRXdVNDekZrUU9SN3J5VnVhYTd5Vkx4Zm03TmZhSys4ZUJKc3FlZVZGZkVPUTVYQXZudQpWM2NpVlFEYk9sdU5xREZuTFZQQzBwa2dhbEtpVHVqY0wxZkpiS3dOMHA0RENoYVM0dDFJZUczZU1pbG43djBSClJ2RVh1R25nTFhnYnAxN3crVml3dEY2amxVUE1iRXUvWUdYUnliODllSjZRenRqZkZNZFVXZnAyaER2cnVFTUEKU1FJREFRQUIKLS0tLS1FTkQgUFVCTElDIEtFWS0tLS0tCg==','yes'),(9075,'mainwp_child_server','https://dashboard.comparrot.nl/wp-admin/','no'),(9076,'mainwp_child_nonce','0','no'),(9077,'mainwp_child_nossl','0','yes'),(9078,'mainwp_child_nossl_key','fc26021a8a860aa272884e8571ee08985b2226786b7d6b4b1f0092918e702af5','yes'),(9079,'mainwp_premium_updates','a:0:{}','no'),(9102,'mainwp_child_clone_sites','0','no'),(9103,'mainwp_child_siteid','433','no'),(12654,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(14953,'wp_force_deactivated_plugins','a:0:{}','yes'),(14968,'category_children','a:0:{}','yes'),(35025,'mainwp_cache_control_cache_solution','Cache Enabler','yes'),(44560,'rewrite_rules','a:131:{s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:39:\"index.php?yoast-sitemap-xsl=$matches[1]\";s:29:\"^ninja-forms/([a-zA-Z0-9]+)/?\";s:36:\"index.php?nf_public_link=$matches[1]\";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:14:\"wpautoterms/?$\";s:36:\"index.php?post_type=wpautoterms_page\";s:44:\"wpautoterms/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?post_type=wpautoterms_page&feed=$matches[1]\";s:39:\"wpautoterms/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?post_type=wpautoterms_page&feed=$matches[1]\";s:31:\"wpautoterms/page/([0-9]{1,})/?$\";s:54:\"index.php?post_type=wpautoterms_page&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:34:\"nf_sub/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"nf_sub/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"nf_sub/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"nf_sub/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"nf_sub/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"nf_sub/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"nf_sub/([^/]+)/embed/?$\";s:39:\"index.php?nf_sub=$matches[1]&embed=true\";s:27:\"nf_sub/([^/]+)/trackback/?$\";s:33:\"index.php?nf_sub=$matches[1]&tb=1\";s:35:\"nf_sub/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?nf_sub=$matches[1]&paged=$matches[2]\";s:42:\"nf_sub/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?nf_sub=$matches[1]&cpage=$matches[2]\";s:31:\"nf_sub/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?nf_sub=$matches[1]&page=$matches[2]\";s:23:\"nf_sub/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"nf_sub/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"nf_sub/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"nf_sub/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"nf_sub/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"nf_sub/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"wpautoterms/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"wpautoterms/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"wpautoterms/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"wpautoterms/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"wpautoterms/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"wpautoterms/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"wpautoterms/(.+?)/embed/?$\";s:49:\"index.php?wpautoterms_page=$matches[1]&embed=true\";s:30:\"wpautoterms/(.+?)/trackback/?$\";s:43:\"index.php?wpautoterms_page=$matches[1]&tb=1\";s:50:\"wpautoterms/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?wpautoterms_page=$matches[1]&feed=$matches[2]\";s:45:\"wpautoterms/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?wpautoterms_page=$matches[1]&feed=$matches[2]\";s:38:\"wpautoterms/(.+?)/page/?([0-9]{1,})/?$\";s:56:\"index.php?wpautoterms_page=$matches[1]&paged=$matches[2]\";s:45:\"wpautoterms/(.+?)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?wpautoterms_page=$matches[1]&cpage=$matches[2]\";s:34:\"wpautoterms/(.+?)(?:/([0-9]+))?/?$\";s:55:\"index.php?wpautoterms_page=$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: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'),(49879,'ai1wm_secret_key','gDWg6eKlukfw','yes'),(49880,'ai1wm_backups_labels','a:0:{}','yes'),(49881,'ai1wm_sites_links','a:0:{}','yes'),(49882,'swift_performance_plugin_organizer','a:0:{}','yes'),(49883,'jetpack_active_modules','a:0:{}','yes'),(49889,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.1.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.1-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.1\";s:7:\"version\";s:3:\"6.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.0.3-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.0.3-partial-0.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.3-rollback-0.zip\";}s:7:\"current\";s:5:\"6.0.3\";s:7:\"version\";s:5:\"6.0.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:3:\"6.0\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1680035707;s:15:\"version_checked\";s:3:\"6.0\";s:12:\"translations\";a:0:{}}','no'),(49896,'ai1wm_updater','a:1:{s:43:\"all-in-one-wp-migration-multisite-extension\";a:13:{s:4:\"name\";s:19:\"Multisite Extension\";s:4:\"slug\";s:19:\"multisite-extension\";s:8:\"homepage\";s:51:\"https://servmask.com/extensions/multisite-extension\";s:13:\"download_link\";s:29:\"https://servmask.com/purchase\";s:7:\"version\";s:4:\"4.27\";s:6:\"author\";s:8:\"ServMask\";s:15:\"author_homepage\";s:20:\"https://servmask.com\";s:8:\"sections\";a:1:{s:11:\"description\";s:595:\"<ul class=\"description\"><li>Export single site from the network</li><li>Export multiple sites from the network</li><li>Export the whole network</li><li>Import single site into the network</li><li>Import multiple sites into the network</li><li>Import a network</li><li>Clone single site within a network</li><li>Multi-network support</li><li>Lifetime license with lifetime updates</li><li>Use on any number of websites that you own</li><li>Backup scheduler with hourly, daily, and weekly options</li><li>Unlimited Extension included</li><li>WP CLI commands</li><li>Premium support</li></ul><br />\";}s:7:\"banners\";a:2:{s:3:\"low\";s:65:\"https://servmask.com/img/products/multisite-extension-772x250.png\";s:4:\"high\";s:66:\"https://servmask.com/img/products/multisite-extension-1544x500.png\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:65:\"https://servmask.com/img/products/multisite-extension-128x128.png\";s:2:\"2x\";s:65:\"https://servmask.com/img/products/multisite-extension-256x256.png\";s:7:\"default\";s:65:\"https://servmask.com/img/products/multisite-extension-256x256.png\";}s:6:\"rating\";i:99;s:11:\"num_ratings\";i:309;s:10:\"downloaded\";i:40189;}}','yes'),(49897,'_site_transient_ai1wm_last_check_for_updates','1680035707','no'),(49900,'_transient_health-check-site-status-result','{\"good\":12,\"recommended\":6,\"critical\":1}','yes'),(50631,'ai1wmme_plugin_key','72821048-196b-4fc6-a1e9-59bd100238e8','yes'),(50632,'Niteoweb.SpiderBlocker.Bots','a:40:{i:0;a:4:{s:4:\"name\";s:10:\"Ahrefs Bot\";s:2:\"re\";s:9:\"AhrefsBot\";s:4:\"desc\";s:25:\"https://ahrefs.com/robot/\";s:5:\"state\";b:1;}i:1;a:4:{s:4:\"name\";s:8:\"MJ12 bot\";s:2:\"re\";s:7:\"MJ12bot\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:2;a:4:{s:4:\"name\";s:9:\"Roger Bot\";s:2:\"re\";s:8:\"Rogerbot\";s:4:\"desc\";s:40:\"http://moz.com/help/pro/rogerbot-crawler\";s:5:\"state\";b:1;}i:3;a:4:{s:4:\"name\";s:11:\"Semrush Bot\";s:2:\"re\";s:10:\"SemrushBot\";s:4:\"desc\";s:31:\"http://www.semrush.com/bot.html\";s:5:\"state\";b:1;}i:4;a:4:{s:4:\"name\";s:11:\"ia_archiver\";s:2:\"re\";s:11:\"ia_archiver\";s:4:\"desc\";s:36:\"http://archive.org/about/exclude.php\";s:5:\"state\";b:1;}i:5;a:4:{s:4:\"name\";s:8:\"ScoutJet\";s:2:\"re\";s:8:\"ScoutJet\";s:4:\"desc\";s:19:\"http://scoutjet.com\";s:5:\"state\";b:1;}i:6;a:4:{s:4:\"name\";s:7:\"sistrix\";s:2:\"re\";s:7:\"sistrix\";s:4:\"desc\";s:26:\"http://crawler.sistrix.net\";s:5:\"state\";b:1;}i:7;a:4:{s:4:\"name\";s:16:\"SearchmetricsBot\";s:2:\"re\";s:16:\"SearchmetricsBot\";s:4:\"desc\";s:50:\"http://www.searchmetrics.com/en/searchmetrics-bot/\";s:5:\"state\";b:1;}i:8;a:4:{s:4:\"name\";s:14:\"SEOkicks-Robot\";s:2:\"re\";s:14:\"SEOkicks-Robot\";s:4:\"desc\";s:33:\"http://www.seokicks.de/robot.html\";s:5:\"state\";b:1;}i:9;a:4:{s:4:\"name\";s:16:\"Lipperhey Spider\";s:2:\"re\";s:16:\"Lipperhey Spider\";s:4:\"desc\";s:43:\"http://www.lipperhey.com/en/website-spider/\";s:5:\"state\";b:1;}i:10;a:4:{s:4:\"name\";s:6:\"Exabot\";s:2:\"re\";s:6:\"Exabot\";s:4:\"desc\";s:44:\"http://www.exalead.com/search/webmasterguide\";s:5:\"state\";b:1;}i:11;a:4:{s:4:\"name\";s:6:\"NC Bot\";s:2:\"re\";s:5:\"NCBot\";s:4:\"desc\";s:55:\"https://twitter.com/NetComber/status/334476871691550721\";s:5:\"state\";b:1;}i:12;a:4:{s:4:\"name\";s:15:\"BacklinkCrawler\";s:2:\"re\";s:15:\"BacklinkCrawler\";s:4:\"desc\";s:40:\"http://www.backlinktest.com/crawler.html\";s:5:\"state\";b:1;}i:13;a:4:{s:4:\"name\";s:15:\"archive.org Bot\";s:2:\"re\";s:15:\"archive.org_bot\";s:4:\"desc\";s:42:\"http://archive.org/details/archive.org_bot\";s:5:\"state\";b:1;}i:14;a:4:{s:4:\"name\";s:12:\"MeanPath Bot\";s:2:\"re\";s:11:\"meanpathbot\";s:4:\"desc\";s:37:\"https://meanpath.com/meanpathbot.html\";s:5:\"state\";b:1;}i:15;a:4:{s:4:\"name\";s:18:\"PagesInventory Bot\";s:2:\"re\";s:14:\"PagesInventory\";s:4:\"desc\";s:56:\"http://www.botsvsbrowsers.com/details/1002332/index.html\";s:5:\"state\";b:1;}i:16;a:4:{s:4:\"name\";s:12:\"Aboundex Bot\";s:2:\"re\";s:11:\"Aboundexbot\";s:4:\"desc\";s:32:\"http://www.aboundex.com/crawler/\";s:5:\"state\";b:1;}i:17;a:4:{s:4:\"name\";s:15:\"SeoProfiler Bot\";s:2:\"re\";s:5:\"spbot\";s:4:\"desc\";s:31:\"http://www.seoprofiler.com/bot/\";s:5:\"state\";b:1;}i:18;a:4:{s:4:\"name\";s:11:\"Linkdex Bot\";s:2:\"re\";s:10:\"linkdexbot\";s:4:\"desc\";s:34:\"http://www.linkdex.com/about/bots/\";s:5:\"state\";b:1;}i:19;a:4:{s:4:\"name\";s:7:\"Gigabot\";s:2:\"re\";s:7:\"Gigabot\";s:4:\"desc\";s:45:\"http://www.useragentstring.com/pages/Gigabot/\";s:5:\"state\";b:1;}i:20;a:4:{s:4:\"name\";s:6:\"DotBot\";s:2:\"re\";s:6:\"dotbot\";s:4:\"desc\";s:35:\"http://en.wikipedia.org/wiki/DotBot\";s:5:\"state\";b:1;}i:21;a:4:{s:4:\"name\";s:5:\"Nutch\";s:2:\"re\";s:5:\"Nutch\";s:4:\"desc\";s:32:\"http://nutch.apache.org/bot.html\";s:5:\"state\";b:1;}i:22;a:4:{s:4:\"name\";s:8:\"BLEX Bot\";s:2:\"re\";s:7:\"BLEXBot\";s:4:\"desc\";s:27:\"http://webmeup-crawler.com/\";s:5:\"state\";b:1;}i:23;a:4:{s:4:\"name\";s:6:\"Ezooms\";s:2:\"re\";s:6:\"Ezooms\";s:4:\"desc\";s:49:\"http://graphicline.co.za/blogs/what-is-ezooms-bot\";s:5:\"state\";b:1;}i:24;a:4:{s:4:\"name\";s:11:\"Majestic 12\";s:2:\"re\";s:11:\"Majestic-12\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:25;a:4:{s:4:\"name\";s:12:\"Majestic SEO\";s:2:\"re\";s:12:\"Majestic-SEO\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:26;a:4:{s:4:\"name\";s:7:\"DSearch\";s:2:\"re\";s:7:\"DSearch\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:27;a:4:{s:4:\"name\";s:4:\"MJ12\";s:2:\"re\";s:4:\"MJ12\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:28;a:4:{s:4:\"name\";s:10:\"Blekko Bot\";s:2:\"re\";s:9:\"BlekkoBot\";s:4:\"desc\";s:33:\"http://blekko.com/about/blekkobot\";s:5:\"state\";b:1;}i:29;a:4:{s:4:\"name\";s:6:\"Yandex\";s:2:\"re\";s:6:\"Yandex\";s:4:\"desc\";s:41:\"http://help.yandex.com/search/?id=1112030\";s:5:\"state\";b:0;}i:30;a:4:{s:4:\"name\";s:10:\"Google Bot\";s:2:\"re\";s:9:\"googlebot\";s:4:\"desc\";s:57:\"https://support.google.com/webmasters/answer/182072?hl=en\";s:5:\"state\";b:0;}i:31;a:4:{s:4:\"name\";s:18:\"Feedfetcher Google\";s:2:\"re\";s:18:\"Feedfetcher-Google\";s:4:\"desc\";s:51:\"https://support.google.com/webmasters/answer/178852\";s:5:\"state\";b:0;}i:32;a:4:{s:4:\"name\";s:8:\"Bing Bot\";s:2:\"re\";s:7:\"BingBot\";s:4:\"desc\";s:36:\"http://en.wikipedia.org/wiki/Bingbot\";s:5:\"state\";b:0;}i:33;a:4:{s:4:\"name\";s:9:\"Nerdy Bot\";s:2:\"re\";s:8:\"NerdyBot\";s:4:\"desc\";s:20:\"http://nerdybot.com/\";s:5:\"state\";b:1;}i:34;a:4:{s:4:\"name\";s:9:\"James BOT\";s:2:\"re\";s:8:\"JamesBOT\";s:4:\"desc\";s:32:\"http://cognitiveseo.com/bot.html\";s:5:\"state\";b:1;}i:35;a:4:{s:4:\"name\";s:7:\"Tin Eye\";s:2:\"re\";s:6:\"TinEye\";s:4:\"desc\";s:34:\"http://www.tineye.com/crawler.html\";s:5:\"state\";b:1;}i:36;a:4:{s:4:\"name\";s:5:\"Baidu\";s:2:\"re\";s:11:\"Baiduspider\";s:4:\"desc\";s:47:\"http://www.baidu.com/search/robots_english.html\";s:5:\"state\";b:1;}i:37;a:4:{s:4:\"name\";s:8:\"Serpstat\";s:2:\"re\";s:8:\"serpstat\";s:4:\"desc\";s:21:\"https://serpstat.com/\";s:5:\"state\";b:1;}i:38;a:4:{s:4:\"name\";s:5:\"SpyFu\";s:2:\"re\";s:5:\"spyfu\";s:4:\"desc\";s:22:\"https://www.spyfu.com/\";s:5:\"state\";b:1;}i:39;a:4:{s:4:\"name\";s:5:\"Prlog\";s:2:\"re\";s:5:\"Prlog\";s:4:\"desc\";s:17:\"https://prlog.ru/\";s:5:\"state\";b:1;}}','yes'),(57130,'auto_core_update_failed','a:6:{s:9:\"attempted\";s:5:\"6.0.3\";s:7:\"current\";s:3:\"6.0\";s:10:\"error_code\";s:32:\"copy_failed_for_update_core_file\";s:10:\"error_data\";s:33:\"wp-admin/includes/update-core.php\";s:9:\"timestamp\";i:1666048151;s:5:\"retry\";b:0;}','no'),(64435,'mainwp_child_auto_purge_cache','0','yes'),(64436,'mainwp_child_cloud_flair_enabled','0','yes'),(64437,'mainwp_cloudflair_email','','yes'),(64438,'mainwp_cloudflair_key','','yes'),(76823,'cache_enabler','a:19:{s:7:\"version\";s:5:\"1.8.7\";s:20:\"use_trailing_slashes\";i:1;s:19:\"permalink_structure\";s:18:\"has_trailing_slash\";s:13:\"cache_expires\";i:0;s:17:\"cache_expiry_time\";i:0;s:30:\"clear_site_cache_on_saved_post\";i:0;s:33:\"clear_site_cache_on_saved_comment\";i:0;s:30:\"clear_site_cache_on_saved_term\";i:0;s:30:\"clear_site_cache_on_saved_user\";i:0;s:34:\"clear_site_cache_on_changed_plugin\";i:0;s:26:\"convert_image_urls_to_webp\";i:0;s:12:\"mobile_cache\";i:0;s:14:\"compress_cache\";i:0;s:11:\"minify_html\";i:0;s:20:\"minify_inline_css_js\";i:0;s:17:\"excluded_post_ids\";s:0:\"\";s:19:\"excluded_page_paths\";s:0:\"\";s:22:\"excluded_query_strings\";s:0:\"\";s:16:\"excluded_cookies\";s:0:\"\";}','yes'),(99304,'_transient_global_styles_refresh-blog','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'),(101360,'wpil_2_license_status','','yes'),(101361,'wpil_2_license_key','','yes'),(101362,'wpil_2_license_data','','yes'),(101363,'wpil_2_ignore_numbers','1','yes'),(101364,'wpil_2_post_types','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(101365,'wpil_2_links_open_new_tab','0','yes'),(101366,'wpil_2_debug_mode','0','yes'),(101367,'wpil_option_update_reporting_data_on_save','0','yes'),(101368,'wpil_2_ignore_words','-\r\n-\r\na\r\nabout\r\nabove\r\nactually\r\nadd\r\nafter\r\nagain\r\nagainst\r\nago\r\nall\r\nam\r\nan\r\nand\r\nanother\r\nanswer\r\nany\r\nare\r\naren\'t\r\nas\r\nat\r\nbase\r\nbe\r\nbecause\r\nbeen\r\nbefore\r\nbeing\r\nbelow\r\nbest\r\nbetter\r\nbetween\r\nboth\r\nbut\r\nby\r\ncan\r\ncan\'t\r\ncannot\r\ncons\r\ncould\r\ncouldn\'t\r\ndid\r\ndidn\'t\r\ndifference\r\ndifferent\r\ndo\r\ndoes\r\ndoesn\'t\r\ndoing\r\ndon\'t\r\ndone\r\ndown\r\nduring\r\neach\r\neasier\r\neasy\r\neight\r\neven\r\nfar\r\nfew\r\nfind\r\nfirst\r\nfive\r\nfor\r\nfour\r\nfree\r\nfrom\r\nfurther\r\ngeneral\r\nget\r\ngett\r\ngetting\r\ngo\r\ngood\r\ngot\r\ngreat\r\nhad\r\nhadn\'t\r\nhas\r\nhasn\'t\r\nhave\r\nhaven\'t\r\nhaver\r\nhaving\r\nhe\r\nhe\'d\r\nhe\'ll\r\nhe\'s\r\nhelp\r\nher\r\nhere\r\nhere\'s\r\nhers\r\nherself\r\nhigh\r\nhim\r\nhimself\r\nhis\r\nhow\r\nhow\'s\r\ni\r\ni\'d\r\ni\'ll\r\ni\'m\r\ni\'ve\r\nif\r\nin\r\ninto\r\nis\r\nisn\'t\r\nit\r\nit\'s\r\nits\r\nitself\r\njust\r\nless\r\nlet\'s\r\nlike\r\nlong\r\nlook\r\nlove\r\nmake\r\nmany\r\nmatt\r\nmatter\r\nmay\r\nme\r\nmore\r\nmost\r\nmuch\r\nmustn\'t\r\nmy\r\nmyself\r\nnever\r\nnew\r\nnine\r\nno\r\nnor\r\nnot\r\nnow\r\nof\r\noff\r\non\r\nonce\r\none\r\nonly\r\nor\r\nother\r\nought\r\nour\r\nours\r\nourselves\r\nout\r\nover\r\noverall\r\nown\r\nper\r\npros\r\nquestion\r\nreview\r\nright\r\nsame\r\nseven\r\nshan\'t\r\nshe\r\nshe\'d\r\nshe\'ll\r\nshe\'s\r\nshock\r\nshocking\r\nshould\r\nshouldn\'t\r\nshow\r\nsimple\r\nsix\r\nso\r\nsome\r\nstart\r\nstill\r\nsuch\r\ntake\r\nten\r\nthan\r\nthat\r\nthat\'s\r\nthe\r\ntheir\r\ntheirs\r\nthem\r\nthemselves\r\nthen\r\nthere\r\nthere\'s\r\nthese\r\nthey\r\nthey\'d\r\nthey\'ll\r\nthey\'re\r\nthey\'ve\r\nthis\r\nthose\r\nthree\r\nthrough\r\nto\r\ntoo\r\ntool\r\ntwo\r\nunder\r\nuntil\r\nup\r\nuse\r\nusing\r\nvery\r\nwant\r\nwas\r\nwasn\'t\r\nwe\r\nwe\'d\r\nwe\'ll\r\nwe\'re\r\nwe\'ve\r\nwere\r\nweren\'t\r\nwhat\r\nwhat\'s\r\nwhen\r\nwhen\'s\r\nwhere\r\nwhere\'s\r\nwhich\r\nwhile\r\nwho\r\nwho\'s\r\nwhom\r\nwhy\r\nwhy\'s\r\nwill\r\nwith\r\nwithin\r\nwithout\r\nwon\'t\r\nwould\r\nwouldn\'t\r\nyou\r\nyou\'d\r\nyou\'ll\r\nyou\'re\r\nyou\'ve\r\nyour\r\nyours\r\nyourself\r\nyourselves\r\nzero\'\r\n-','yes'),(101369,'wpil_has_run_initial_scan','1','yes'),(101370,'wpil_site_db_version','1.22','yes'),(101371,'wpil_link_table_is_created','1','yes'),(101372,'wpil_fresh_install','','yes'),(101373,'wpil_install_date','2023-02-16 19:15:48','yes'),(101376,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:39:\"wp-sheet-editor-premium/vendor/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.5.3\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1676574949;s:11:\"plugin_path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}}s:7:\"abspath\";s:34:\"/opt/aphex/sites/genomevalley.org/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:8:\"sdk_path\";s:39:\"wp-sheet-editor-premium/vendor/freemius\";s:7:\"version\";s:5:\"2.5.3\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1676574949;}}','yes'),(101377,'fs_debug_mode','','yes'),(101378,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:1:{i:1010;a:3:{s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}}s:11:\"plugin_data\";a:1:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";a:15:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1676574949;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.5.3\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:13:\"2.25.2-beta.1\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:16:\"genomevalley.org\";s:9:\"server_ip\";s:9:\"127.0.0.1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1676653621;s:7:\"version\";s:13:\"2.25.2-beta.1\";}s:15:\"prev_is_premium\";b:1;}}s:13:\"file_slug_map\";a:1:{s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";}s:7:\"plugins\";a:1:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:28:\"WP Sheet Editor - Post Types\";s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:12:\"premium_slug\";s:23:\"wp-sheet-editor-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:7:\"version\";s:13:\"2.25.2-beta.1\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:1;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_ec1c7da603c0772f1bfe276efb715\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"1010\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"997a1baa74a41a606dd029dad4009bf9\";s:7:\"updates\";a:1:{i:1010;N;}}','yes'),(101399,'vg_sheet_editor','a:8:{s:8:\"last_tab\";N;s:13:\"be_post_types\";a:1:{i:0;s:4:\"post\";}s:17:\"be_posts_per_page\";i:20;s:23:\"be_load_items_on_scroll\";i:1;s:19:\"be_fix_columns_left\";i:2;s:22:\"be_posts_per_page_save\";i:4;s:26:\"be_timeout_between_batches\";i:6;s:23:\"be_disable_post_actions\";i:0;}','yes'),(101438,'vgse_columns_visibility','a:0:{}','yes'),(101439,'vgse_columns_visibility_migrated','1','yes'),(101440,'vgse_welcome_redirect','no','yes'),(101441,'vgse_hide_whats_new_2.25.2-beta.1','yes','yes'),(101442,'fs_gdpr','a:1:{s:2:\"u0\";a:1:{s:8:\"required\";b:0;}}','yes'),(102528,'_site_transient_timeout_php_check_0bf95b5f09d09e56bf994b7894d9087c','1680296224','no'),(102529,'_site_transient_php_check_0bf95b5f09d09e56bf994b7894d9087c','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(102734,'_transient_timeout_3edf8222c34ee118f79d80fcc6aeb0c1','1680122107','no'),(102735,'_transient_3edf8222c34ee118f79d80fcc6aeb0c1','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:7:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 28 Mar 2023 20:35:07 GMT\";s:12:\"content-type\";s:25:\"text/plain; charset=utf-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:5:\"ord 5\";}}s:4:\"body\";s:1159:\"{\"plugins\":{\"wp-sheet-editor-premium\\/wp-sheet-editor.php\":{\"id\":\"w.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"slug\":\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"plugin\":\"wp-sheet-editor-premium\\/wp-sheet-editor.php\",\"new_version\":\"2.25.1\",\"url\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/\",\"package\":\"https:\\/\\/downloads.wordpress.org\\/plugin\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages.2.25.1.zip\",\"icons\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-256x256.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-128x128.png?rev=1543619\"},\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-1544x500.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-772x250.png?rev=1543627\"},\"banners_rtl\":[],\"requires\":\"3.6\",\"tested\":\"6.1.1\",\"requires_php\":false,\"compatibility\":[]}},\"translations\":[]}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:1159:\"{\"plugins\":{\"wp-sheet-editor-premium\\/wp-sheet-editor.php\":{\"id\":\"w.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"slug\":\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"plugin\":\"wp-sheet-editor-premium\\/wp-sheet-editor.php\",\"new_version\":\"2.25.1\",\"url\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/\",\"package\":\"https:\\/\\/downloads.wordpress.org\\/plugin\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages.2.25.1.zip\",\"icons\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-256x256.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-128x128.png?rev=1543619\"},\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-1544x500.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-772x250.png?rev=1543627\"},\"banners_rtl\":[],\"requires\":\"3.6\",\"tested\":\"6.1.1\",\"requires_php\":false,\"compatibility\":[]}},\"translations\":[]}\";s:3:\"raw\";s:1406:\"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Tue, 28 Mar 2023 20:35:07 GMT\r\nContent-Type: text/plain; charset=utf-8\r\nTransfer-Encoding: chunked\r\nConnection: close\r\nVary: Accept-Encoding\r\nX-Frame-Options: SAMEORIGIN\r\nContent-Encoding: br\r\nX-nc:  ord 5\r\n\r\n{\"plugins\":{\"wp-sheet-editor-premium\\/wp-sheet-editor.php\":{\"id\":\"w.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"slug\":\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"plugin\":\"wp-sheet-editor-premium\\/wp-sheet-editor.php\",\"new_version\":\"2.25.1\",\"url\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/\",\"package\":\"https:\\/\\/downloads.wordpress.org\\/plugin\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages.2.25.1.zip\",\"icons\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-256x256.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-128x128.png?rev=1543619\"},\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-1544x500.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-772x250.png?rev=1543627\"},\"banners_rtl\":[],\"requires\":\"3.6\",\"tested\":\"6.1.1\",\"requires_php\":false,\"compatibility\":[]}},\"translations\":[]}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:7:{s:6:\"server\";a:1:{i:0;s:5:\"nginx\";}s:4:\"date\";a:1:{i:0;s:29:\"Tue, 28 Mar 2023 20:35:07 GMT\";}s:12:\"content-type\";a:1:{i:0;s:25:\"text/plain; charset=utf-8\";}s:4:\"vary\";a:1:{i:0;s:15:\"Accept-Encoding\";}s:15:\"x-frame-options\";a:1:{i:0;s:10:\"SAMEORIGIN\";}s:16:\"content-encoding\";a:1:{i:0;s:2:\"br\";}s:4:\"x-nc\";a:1:{i:0;s:5:\"ord 5\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.1000000000000001;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:51:\"https://api.wordpress.org/plugins/update-check/1.1/\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no'),(102736,'_site_transient_timeout_theme_roots','1680037507','no'),(102737,'_site_transient_theme_roots','a:5:{s:12:\"refresh-blog\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(102738,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1680035708;s:7:\"checked\";a:5:{s:12:\"refresh-blog\";s:5:\"1.1.2\";s:15:\"twentyseventeen\";s:3:\"3.0\";s:12:\"twentytwenty\";s:3:\"2.0\";s:15:\"twentytwentyone\";s:3:\"1.6\";s:15:\"twentytwentytwo\";s:3:\"1.2\";}s:8:\"response\";a:5:{s:12:\"refresh-blog\";a:6:{s:5:\"theme\";s:12:\"refresh-blog\";s:11:\"new_version\";s:5:\"1.1.3\";s:3:\"url\";s:42:\"https://wordpress.org/themes/refresh-blog/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/refresh-blog.1.1.3.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"3.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.3.1.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.1.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.7.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.3.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(102739,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1680035709;s:8:\"response\";a:9:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a: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:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"5.2\";}s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:4:\"7.73\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.73.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=2837281\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=2837281\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";s:6:\"tested\";s:3:\"6.2\";s:12:\"requires_php\";s:3:\"5.3\";}s:29:\"mainwp-child/mainwp-child.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/mainwp-child\";s:4:\"slug\";s:12:\"mainwp-child\";s:6:\"plugin\";s:29:\"mainwp-child/mainwp-child.php\";s:11:\"new_version\";s:7:\"4.4.0.2\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/mainwp-child/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/mainwp-child.4.4.0.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/mainwp-child/assets/icon-256x256.png?rev=2734948\";s:2:\"1x\";s:65:\"https://ps.w.org/mainwp-child/assets/icon-128x128.png?rev=2734948\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/mainwp-child/assets/banner-1544x500.jpg?rev=2734948\";s:2:\"1x\";s:67:\"https://ps.w.org/mainwp-child/assets/banner-772x250.jpg?rev=2734948\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/mainwp-child/assets/banner-1544x500-rtl.jpg?rev=2712922\";s:2:\"1x\";s:71:\"https://ps.w.org/mainwp-child/assets/banner-772x250-rtl.jpg?rev=2712922\";}s:8:\"requires\";s:3:\"5.4\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"7.4\";}s:27:\"ninja-forms/ninja-forms.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/ninja-forms\";s:4:\"slug\";s:11:\"ninja-forms\";s:6:\"plugin\";s:27:\"ninja-forms/ninja-forms.php\";s:11:\"new_version\";s:6:\"3.6.20\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/ninja-forms/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/ninja-forms.3.6.20.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/ninja-forms/assets/icon-256x256.png?rev=1649747\";s:2:\"1x\";s:64:\"https://ps.w.org/ninja-forms/assets/icon-128x128.png?rev=1649747\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/ninja-forms/assets/banner-1544x500.png?rev=2069024\";s:2:\"1x\";s:66:\"https://ps.w.org/ninja-forms/assets/banner-772x250.png?rev=2069024\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";b:0;}s:41:\"sassy-social-share/sassy-social-share.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:32:\"w.org/plugins/sassy-social-share\";s:4:\"slug\";s:18:\"sassy-social-share\";s:6:\"plugin\";s:41:\"sassy-social-share/sassy-social-share.php\";s:11:\"new_version\";s:6:\"3.3.49\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/sassy-social-share/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/sassy-social-share.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/sassy-social-share/assets/icon-128x128.png?rev=1300723\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:73:\"https://ps.w.org/sassy-social-share/assets/banner-772x250.png?rev=2489986\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"2.5.0\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";b:0;}s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:36:\"w.org/plugins/scheduled-post-trigger\";s:4:\"slug\";s:22:\"scheduled-post-trigger\";s:6:\"plugin\";s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";s:11:\"new_version\";s:3:\"3.1\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/scheduled-post-trigger/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/scheduled-post-trigger.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/scheduled-post-trigger/assets/icon-128x128.jpg?rev=1492075\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:77:\"https://ps.w.org/scheduled-post-trigger/assets/banner-772x250.jpg?rev=1492080\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.2\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";b:0;}s:23:\"spiderblocker/index.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/spiderblocker\";s:4:\"slug\";s:13:\"spiderblocker\";s:6:\"plugin\";s:23:\"spiderblocker/index.php\";s:11:\"new_version\";s:5:\"1.3.3\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/spiderblocker/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/spiderblocker.1.3.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/spiderblocker/assets/icon-256x256.jpg?rev=2476085\";s:2:\"1x\";s:66:\"https://ps.w.org/spiderblocker/assets/icon-128x128.jpg?rev=2476085\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/spiderblocker/assets/banner-1544x500.jpg?rev=2476085\";s:2:\"1x\";s:68:\"https://ps.w.org/spiderblocker/assets/banner-772x250.jpg?rev=2476085\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";b:0;}s:81:\"auto-terms-of-service-and-privacy-policy/auto-terms-of-service-privacy-policy.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:54:\"w.org/plugins/auto-terms-of-service-and-privacy-policy\";s:4:\"slug\";s:40:\"auto-terms-of-service-and-privacy-policy\";s:6:\"plugin\";s:81:\"auto-terms-of-service-and-privacy-policy/auto-terms-of-service-privacy-policy.php\";s:11:\"new_version\";s:5:\"2.5.0\";s:3:\"url\";s:71:\"https://wordpress.org/plugins/auto-terms-of-service-and-privacy-policy/\";s:7:\"package\";s:89:\"https://downloads.wordpress.org/plugin/auto-terms-of-service-and-privacy-policy.2.5.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:85:\"https://ps.w.org/auto-terms-of-service-and-privacy-policy/assets/icon.svg?rev=2292425\";s:3:\"svg\";s:85:\"https://ps.w.org/auto-terms-of-service-and-privacy-policy/assets/icon.svg?rev=2292425\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:95:\"https://ps.w.org/auto-terms-of-service-and-privacy-policy/assets/banner-772x250.png?rev=2292425\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.2\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"5.3\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"20.4\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.4.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=2643727\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=2643727\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=2643727\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=2643727\";}s:8:\"requires\";s:3:\"6.0\";s:6:\"tested\";s:3:\"6.2\";s:12:\"requires_php\";s:6:\"5.6.20\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:6:{s:35:\"404-to-homepage/404-to-homepage.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/404-to-homepage\";s:4:\"slug\";s:15:\"404-to-homepage\";s:6:\"plugin\";s:35:\"404-to-homepage/404-to-homepage.php\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/404-to-homepage/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/404-to-homepage.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/404-to-homepage/assets/icon-256x256.png?rev=2105401\";s:2:\"1x\";s:68:\"https://ps.w.org/404-to-homepage/assets/icon-128x128.png?rev=2105401\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/404-to-homepage/assets/banner-1544x500.jpg?rev=2105401\";s:2:\"1x\";s:70:\"https://ps.w.org/404-to-homepage/assets/banner-772x250.jpg?rev=2105401\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s: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:35:\"pe-recent-posts/pe-recent-posts.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/pe-recent-posts\";s:4:\"slug\";s:15:\"pe-recent-posts\";s:6:\"plugin\";s:35:\"pe-recent-posts/pe-recent-posts.php\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/pe-recent-posts/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/pe-recent-posts.1.2.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/pe-recent-posts/assets/icon-128x128.png?rev=1220719\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/pe-recent-posts/assets/banner-772x250.png?rev=1220719\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.4\";}s:29:\"theme-editor/theme_editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/theme-editor\";s:4:\"slug\";s:12:\"theme-editor\";s:6:\"plugin\";s:29:\"theme-editor/theme_editor.php\";s:11:\"new_version\";s:3:\"2.7\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/theme-editor/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/theme-editor.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/theme-editor/assets/icon-128x128.png?rev=1644634\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/theme-editor/assets/banner-772x250.jpg?rev=1644636\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.4\";}s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:6:\"plugin\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:11:\"new_version\";s:13:\"2.25.2-beta.1\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:0:{}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:0:\"\";s:12:\"requires_php\";s:0:\"\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:7:\"checked\";a:18:{s:35:\"404-to-homepage/404-to-homepage.php\";s:3:\"1.0\";s:19:\"akismet/akismet.php\";s:5:\"4.2.4\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.61\";s:91:\"all-in-one-wp-migration-multisite-extension/all-in-one-wp-migration-multisite-extension.php\";s:4:\"4.18\";s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.2\";s:9:\"hello.php\";s:5:\"1.7.2\";s:37:\"wordpress-autoblogging/basic-auth.php\";s:3:\"0.1\";s:37:\"link-whisper-premium/link-whisper.php\";s:5:\"1.5.9\";s:29:\"mainwp-child/mainwp-child.php\";s:5:\"4.2.3\";s:27:\"ninja-forms/ninja-forms.php\";s:6:\"3.6.11\";s:35:\"pe-recent-posts/pe-recent-posts.php\";s:3:\"1.2\";s:41:\"sassy-social-share/sassy-social-share.php\";s:6:\"3.3.42\";s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";s:3:\"3.0\";s:23:\"spiderblocker/index.php\";s:5:\"1.3.1\";s:29:\"theme-editor/theme_editor.php\";s:3:\"2.7\";s:81:\"auto-terms-of-service-and-privacy-policy/auto-terms-of-service-privacy-policy.php\";s:5:\"2.4.9\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:13:\"2.25.2-beta.1\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"18.9\";}}','no'),(102760,'_transient_timeout_global_styles_svg_filters_refresh-blog','1680068288','no'),(102761,'_transient_global_styles_svg_filters_refresh-blog','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

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

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (3,5,'_edit_lock','1602142460:1'),(4,6,'_wp_attached_file','2020/10/895-scaled.jpg'),(5,6,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1643;s:4:\"file\";s:22:\"2020/10/895-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"895-300x193.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"895-1024x657.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"895-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"895-768x493.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:493;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"895-1536x986.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:986;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:17:\"895-2048x1314.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1314;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shuttle-column1-1/3\";a:4:{s:4:\"file\";s:16:\"895-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shuttle-column1-1/4\";a:4:{s:4:\"file\";s:16:\"895-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shuttle-column2-1/2\";a:4:{s:4:\"file\";s:15:\"895-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shuttle-column2-2/3\";a:4:{s:4:\"file\";s:15:\"895-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shuttle-column3-1/3\";a:4:{s:4:\"file\";s:15:\"895-380x107.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shuttle-column3-2/3\";a:4:{s:4:\"file\";s:15:\"895-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shuttle-column4-2/3\";a:4:{s:4:\"file\";s:15:\"895-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:7:\"895.jpg\";}'),(8,5,'_thumbnail_id','6'),(9,8,'_edit_last','1'),(10,8,'_edit_lock','1602142904:1'),(11,9,'_wp_attached_file','2020/10/896.jpg'),(12,9,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"file\";s:15:\"2020/10/896.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"896-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"896-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"896-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"896-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shuttle-column1-1/3\";a:4:{s:4:\"file\";s:16:\"896-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shuttle-column1-1/4\";a:4:{s:4:\"file\";s:16:\"896-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shuttle-column2-1/2\";a:4:{s:4:\"file\";s:15:\"896-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shuttle-column2-2/3\";a:4:{s:4:\"file\";s:15:\"896-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shuttle-column3-1/3\";a:4:{s:4:\"file\";s:15:\"896-380x107.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shuttle-column3-2/3\";a:4:{s:4:\"file\";s:15:\"896-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shuttle-column4-2/3\";a:4:{s:4:\"file\";s:15:\"896-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:{}}}'),(13,8,'_thumbnail_id','9'),(16,8,'_yoast_wpseo_content_score','30'),(17,8,'_yoast_wpseo_primary_category','3'),(27,15,'_edit_last','1'),(28,15,'_edit_lock','1602143333:1'),(29,16,'_edit_last','1'),(30,16,'_edit_lock','1602143331:1'),(31,16,'_yoast_wpseo_content_score','30'),(32,17,'_edit_last','1'),(33,17,'_edit_lock','1602143385:1'),(34,17,'_yoast_wpseo_content_score','30'),(37,18,'_edit_last','1'),(38,18,'_edit_lock','1602143482:1'),(39,19,'_edit_last','1'),(40,19,'_edit_lock','1602143484:1'),(45,18,'_yoast_wpseo_content_score','30'),(46,19,'_yoast_wpseo_content_score','30'),(53,33,'_menu_item_type','custom'),(54,33,'_menu_item_menu_item_parent','0'),(55,33,'_menu_item_object_id','33'),(56,33,'_menu_item_object','custom'),(57,33,'_menu_item_target',''),(58,33,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(59,33,'_menu_item_xfn',''),(60,33,'_menu_item_url','http://genomevalley.org/'),(62,34,'_menu_item_type','post_type'),(63,34,'_menu_item_menu_item_parent','0'),(64,34,'_menu_item_object_id','16'),(65,34,'_menu_item_object','page'),(66,34,'_menu_item_target',''),(67,34,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(68,34,'_menu_item_xfn',''),(69,34,'_menu_item_url',''),(71,35,'_menu_item_type','post_type'),(72,35,'_menu_item_menu_item_parent','0'),(73,35,'_menu_item_object_id','17'),(74,35,'_menu_item_object','page'),(75,35,'_menu_item_target',''),(76,35,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(77,35,'_menu_item_xfn',''),(78,35,'_menu_item_url',''),(80,36,'_menu_item_type','post_type'),(81,36,'_menu_item_menu_item_parent','0'),(82,36,'_menu_item_object_id','15'),(83,36,'_menu_item_object','page'),(84,36,'_menu_item_target',''),(85,36,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(86,36,'_menu_item_xfn',''),(87,36,'_menu_item_url',''),(88,36,'_menu_item_orphaned','1602143687'),(89,37,'_menu_item_type','post_type'),(90,37,'_menu_item_menu_item_parent','0'),(91,37,'_menu_item_object_id','18'),(92,37,'_menu_item_object','page'),(93,37,'_menu_item_target',''),(94,37,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(95,37,'_menu_item_xfn',''),(96,37,'_menu_item_url',''),(98,38,'_menu_item_type','post_type'),(99,38,'_menu_item_menu_item_parent','0'),(100,38,'_menu_item_object_id','19'),(101,38,'_menu_item_object','page'),(102,38,'_menu_item_target',''),(103,38,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(104,38,'_menu_item_xfn',''),(105,38,'_menu_item_url',''),(107,39,'_menu_item_type','custom'),(108,39,'_menu_item_menu_item_parent','0'),(109,39,'_menu_item_object_id','39'),(110,39,'_menu_item_object','custom'),(111,39,'_menu_item_target',''),(112,39,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(113,39,'_menu_item_xfn',''),(114,39,'_menu_item_url','https://www.facebook.com/'),(116,40,'_menu_item_type','custom'),(117,40,'_menu_item_menu_item_parent','0'),(118,40,'_menu_item_object_id','40'),(119,40,'_menu_item_object','custom'),(120,40,'_menu_item_target',''),(121,40,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(122,40,'_menu_item_xfn',''),(123,40,'_menu_item_url','https://twitter.com/?lang=en'),(125,41,'_menu_item_type','custom'),(126,41,'_menu_item_menu_item_parent','0'),(127,41,'_menu_item_object_id','41'),(128,41,'_menu_item_object','custom'),(129,41,'_menu_item_target',''),(130,41,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(131,41,'_menu_item_xfn',''),(132,41,'_menu_item_url','https://www.linkedin.com/login'),(134,42,'_menu_item_type','custom'),(135,42,'_menu_item_menu_item_parent','0'),(136,42,'_menu_item_object_id','42'),(137,42,'_menu_item_object','custom'),(138,42,'_menu_item_target',''),(139,42,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(140,42,'_menu_item_xfn',''),(141,42,'_menu_item_url','https://www.pinterest.com/'),(143,43,'_menu_item_type','custom'),(144,43,'_menu_item_menu_item_parent','0'),(145,43,'_menu_item_object_id','43'),(146,43,'_menu_item_object','custom'),(147,43,'_menu_item_target',''),(148,43,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(149,43,'_menu_item_xfn',''),(150,43,'_menu_item_url','#'),(152,44,'_menu_item_type','custom'),(153,44,'_menu_item_menu_item_parent','0'),(154,44,'_menu_item_object_id','44'),(155,44,'_menu_item_object','custom'),(156,44,'_menu_item_target',''),(157,44,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(158,44,'_menu_item_xfn',''),(159,44,'_menu_item_url','#'),(161,45,'_menu_item_type','custom'),(162,45,'_menu_item_menu_item_parent','0'),(163,45,'_menu_item_object_id','45'),(164,45,'_menu_item_object','custom'),(165,45,'_menu_item_target',''),(166,45,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(167,45,'_menu_item_xfn',''),(168,45,'_menu_item_url','#'),(170,46,'_wp_attached_file','2020/10/897.jpg'),(171,46,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:347;s:6:\"height\";i:502;s:4:\"file\";s:15:\"2020/10/897.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"897-207x300.jpg\";s:5:\"width\";i:207;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"897-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"refresh-blog-thumbnail\";a:4:{s:4:\"file\";s:15:\"897-347x225.jpg\";s:5:\"width\";i:347;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"refresh-blog-square-thumbnail-small\";a:4:{s:4:\"file\";s:15:\"897-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-N920I\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1454928350\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:19:\"0.00028538812785388\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(172,47,'_wp_attached_file','2020/10/898.png'),(173,47,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:345;s:4:\"file\";s:15:\"2020/10/898.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"898-300x202.png\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"898-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"refresh-blog-thumbnail\";a:4:{s:4:\"file\";s:15:\"898-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"refresh-blog-square-thumbnail-small\";a:4:{s:4:\"file\";s:15:\"898-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;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:{}}}'),(174,5,'_pe_base_popular_posts_count','885'),(175,8,'_pe_base_popular_posts_count','1083'),(176,17,'_pe_base_popular_posts_count','1168'),(177,15,'_pe_base_popular_posts_count','88'),(180,16,'_pe_base_popular_posts_count','928'),(188,18,'_pe_base_popular_posts_count','883'),(191,19,'_pe_base_popular_posts_count','845'),(198,64,'_wp_attached_file','2020/10/favicon57.png'),(199,64,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:194;s:6:\"height\";i:123;s:4:\"file\";s:21:\"2020/10/favicon57.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"favicon57-150x123.png\";s:5:\"width\";i:150;s:6:\"height\";i:123;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:{}}}'),(210,74,'_wp_attached_file','2020/10/899.jpg'),(211,74,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2501;s:6:\"height\";i:1250;s:4:\"file\";s:15:\"2020/10/899.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"899-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"899-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"899-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"899-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"899-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:17:\"899-2048x1024.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"refresh-blog-thumbnail\";a:4:{s:4:\"file\";s:15:\"899-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"refresh-blog-featured\";a:4:{s:4:\"file\";s:16:\"899-1056x594.jpg\";s:5:\"width\";i:1056;s:6:\"height\";i:594;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"refresh-blog-square-thumbnail-small\";a:4:{s:4:\"file\";s:15:\"899-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;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:{}}}'),(212,75,'_wp_attached_file','2020/10/cropped-899.jpg'),(213,75,'_wp_attachment_context','custom-header'),(214,75,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:23:\"2020/10/cropped-899.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"cropped-899-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"cropped-899-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"cropped-899-768x221.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"refresh-blog-thumbnail\";a:4:{s:4:\"file\";s:23:\"cropped-899-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"refresh-blog-square-thumbnail-small\";a:4:{s:4:\"file\";s:23:\"cropped-899-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;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:74;}'),(215,75,'_wp_attachment_custom_header_last_used_refresh-blog','1602148755'),(216,75,'_wp_attachment_is_custom_header','refresh-blog'),(219,77,'_field_5','Synergized'),(220,77,'_field_6','[email protected]'),(221,77,'_form_id','2'),(222,77,'_seq_num','1'),(223,78,'_field_1','Elena Stewart'),(224,78,'_field_2','[email protected]'),(225,78,'_field_3','Hey there,\n\nSunday sadness, also known as the Sunday scaries, is a harsh reality for many. As the last day of the weekend comes to a close, you start to feel a little (or a lot) anxious about the start of a new week and all the responsibilities that come with it.\n\nI’m putting together a list of tips and resources that can help reduce the stress and anxiety that arise with the Monday morning sun. I plan to talk about how to enjoy your weekend and prep your mind, body, and home for work, school, and life in the week ahead. \n\nWhat do you think? If this sounds like something your readers may find helpful, I can send it over as soon as I’m done. If you like it, you can post it on your site free of charge. Just let me know either way. :)\n\nI look forward to hearing from you!\nElena Stewart\n\nReach me at: [email protected]\nVisit my site at: elenastewart.com\n\nP.S. I\'d love to feature your website in the piece as well! Please let me know if there\'s a specific page or post you\'d like to see included.'),(226,78,'_form_id','1'),(227,78,'_seq_num','1'),(230,81,'_field_1','Tina Martin'),(231,81,'_field_2','[email protected]'),(232,81,'_field_3','Hello!\n \nCarving out more free time can seem impossible for entrepreneurs and small business owners. But thanks to countless useful apps on the market, it can actually be simple!\n \nIf you\'re open to receiving guest articles for your website, may I write about this topic for your website? Specifically, I\'ll provide the best apps for entrepreneurs/SBOs so that they can have more free time.\n \nLet me know what you think!\n \nThanks so much. \nTina Martin\n \nIdeaspired.comHello!\n \nCarving out more free time can seem impossible for entrepreneurs and small business owners. But thanks to countless useful apps on the market, it can actually be simple!\n \nIf you\'re open to receiving guest articles for your website, may I write about this topic for your website? Specifically, I\'ll provide the best apps for entrepreneurs/SBOs so that they can have more free time.\n \nLet me know what you think!\n \nThanks so much. \nTina Martin\n \nIdeaspired.com'),(233,81,'_form_id','1'),(234,81,'_seq_num','2'),(235,83,'_edit_last','1'),(236,83,'_edit_lock','1623962970:1'),(237,83,'_heateor_sss_meta','a:2:{s:7:\"sharing\";i:0;s:16:\"vertical_sharing\";i:0;}'),(238,83,'_yoast_wpseo_content_score','90'),(239,83,'_yoast_wpseo_estimated-reading-time-minutes','2'),(240,83,'_yoast_wpseo_primary_category','9'),(241,83,'_oembed_06569c3e3a91f78af1b495b481e2d995','<iframe title=\"NordVPN | Zeer uitgebreid VPN en goedkoope\" width=\"640\" height=\"480\" src=\"https://www.youtube.com/embed/ez86zn5zxkE?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(242,83,'_oembed_time_06569c3e3a91f78af1b495b481e2d995','1623960596'),(243,86,'_wp_attached_file','2021/07/214afasf12.jpg'),(244,86,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:844;s:4:\"file\";s:22:\"2021/07/214afasf12.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"214afasf12-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"214afasf12-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"214afasf12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"214afasf12-768x506.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"refresh-blog-thumbnail\";a:4:{s:4:\"file\";s:22:\"214afasf12-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"refresh-blog-featured\";a:4:{s:4:\"file\";s:23:\"214afasf12-1056x594.jpg\";s:5:\"width\";i:1056;s:6:\"height\";i:594;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"refresh-blog-square-thumbnail-small\";a:4:{s:4:\"file\";s:22:\"214afasf12-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;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:{}}}'),(245,87,'_wp_attached_file','2021/07/asfsaf1241.jpg'),(246,87,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:511;s:4:\"file\";s:22:\"2021/07/asfsaf1241.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"asfsaf1241-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"asfsaf1241-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"refresh-blog-thumbnail\";a:4:{s:4:\"file\";s:22:\"asfsaf1241-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"refresh-blog-square-thumbnail-small\";a:4:{s:4:\"file\";s:22:\"asfsaf1241-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;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:{}}}'),(247,83,'_thumbnail_id','87'),(250,83,'_pe_base_popular_posts_count','40'),(251,89,'_field_5','Field'),(252,89,'_field_6','[email protected]'),(253,89,'_form_id','2'),(254,89,'_seq_num','2'),(255,90,'_field_1','Michael‌ ‌'),(256,90,'_field_2','[email protected]'),(257,90,'_field_3','Hello,\n\nI’d love to put together a (free) article for your website on the importance of networking for aspiring entrepreneurs.\n\nIs this of interest to you?\n\nThanks so much for your time today,\nMichael\nTheEntrepreneurHub.com\n\nPS If an article on this topic isn’t of interest, is there something else that is? Let me know if so!'),(258,90,'_form_id','1'),(259,90,'_seq_num','3'),(260,93,'_oembed_f214e052f39f357b4266800dc2d214c3','<iframe title=\"Easiest Way To Make Money Trading Crypto in 2021 (How to Get Started)\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/Nt67sDFQlhs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(261,93,'_oembed_time_f214e052f39f357b4266800dc2d214c3','1632142542'),(262,94,'_wp_attached_file','2021/09/pexels-pixabay-315788-scaled.jpg'),(263,94,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1922;s:4:\"file\";s:40:\"2021/09/pexels-pixabay-315788-scaled.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"pexels-pixabay-315788-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"pexels-pixabay-315788-1024x769.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:769;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"pexels-pixabay-315788-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"pexels-pixabay-315788-768x577.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"pexels-pixabay-315788-1536x1153.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:35:\"pexels-pixabay-315788-2048x1538.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1538;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"refresh-blog-thumbnail\";a:4:{s:4:\"file\";s:33:\"pexels-pixabay-315788-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"refresh-blog-featured\";a:4:{s:4:\"file\";s:34:\"pexels-pixabay-315788-1056x594.jpg\";s:5:\"width\";i:1056;s:6:\"height\";i:594;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"refresh-blog-square-thumbnail-small\";a:4:{s:4:\"file\";s:33:\"pexels-pixabay-315788-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"pexels-pixabay-315788.jpg\";}'),(264,93,'_edit_last','1'),(265,93,'_edit_lock','1632142550:1'),(266,93,'_thumbnail_id','94'),(269,93,'_heateor_sss_meta','a:2:{s:7:\"sharing\";i:0;s:16:\"vertical_sharing\";i:0;}'),(270,93,'_yoast_wpseo_content_score','90'),(271,93,'_yoast_wpseo_estimated-reading-time-minutes','4'),(272,93,'_wp_old_date','2021-09-20'),(273,93,'_yoast_wpseo_primary_category','10'),(274,97,'_wp_attached_file','2021/09/pexels-rodnae-productions-8370419-scaled.jpg'),(275,97,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:52:\"2021/09/pexels-rodnae-productions-8370419-scaled.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"pexels-rodnae-productions-8370419-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"pexels-rodnae-productions-8370419-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"pexels-rodnae-productions-8370419-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"pexels-rodnae-productions-8370419-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"pexels-rodnae-productions-8370419-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"pexels-rodnae-productions-8370419-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"refresh-blog-thumbnail\";a:4:{s:4:\"file\";s:45:\"pexels-rodnae-productions-8370419-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"refresh-blog-featured\";a:4:{s:4:\"file\";s:46:\"pexels-rodnae-productions-8370419-1056x594.jpg\";s:5:\"width\";i:1056;s:6:\"height\";i:594;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"refresh-blog-square-thumbnail-small\";a:4:{s:4:\"file\";s:45:\"pexels-rodnae-productions-8370419-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:37:\"pexels-rodnae-productions-8370419.jpg\";}'),(276,96,'_oembed_3b29de8780ae9cc36f622532c2c8f0f3','<iframe title=\"Hester Peirce, SEC commissioner on how the U.S. needs to stay on top of crypto innovation\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/JD5fgxy2DPk?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(277,96,'_oembed_time_3b29de8780ae9cc36f622532c2c8f0f3','1632317738'),(278,96,'_edit_last','1'),(279,96,'_thumbnail_id','97'),(282,96,'_heateor_sss_meta','a:2:{s:7:\"sharing\";i:0;s:16:\"vertical_sharing\";i:0;}'),(283,96,'_yoast_wpseo_content_score','30'),(284,96,'_yoast_wpseo_estimated-reading-time-minutes','2'),(285,96,'_wp_old_date','2021-09-22'),(286,96,'_yoast_wpseo_primary_category','10'),(287,96,'_edit_lock','1632317616:1'),(288,102,'_oembed_bdeecec2231c1d492bf6362e8fcc7f3b','<iframe title=\"CARDANO ADA CRYPTO CRASH, BUY THE DIP? SEPT 12th CATALYST, CARDANO ADA PRICE PREDICTION NEWS UPDATE\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/an4w6qL20Pw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(289,102,'_oembed_time_bdeecec2231c1d492bf6362e8fcc7f3b','1632922595'),(290,102,'_edit_last','1'),(291,102,'_edit_lock','1633974842:1'),(292,103,'_wp_attached_file','2021/09/mackenzie-marco-XG88BYDSDZA-unsplash-scaled.jpg'),(293,103,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:55:\"2021/09/mackenzie-marco-XG88BYDSDZA-unsplash-scaled.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"mackenzie-marco-XG88BYDSDZA-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"mackenzie-marco-XG88BYDSDZA-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"mackenzie-marco-XG88BYDSDZA-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"mackenzie-marco-XG88BYDSDZA-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"mackenzie-marco-XG88BYDSDZA-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:50:\"mackenzie-marco-XG88BYDSDZA-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"refresh-blog-thumbnail\";a:4:{s:4:\"file\";s:48:\"mackenzie-marco-XG88BYDSDZA-unsplash-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"refresh-blog-featured\";a:4:{s:4:\"file\";s:49:\"mackenzie-marco-XG88BYDSDZA-unsplash-1056x594.jpg\";s:5:\"width\";i:1056;s:6:\"height\";i:594;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"refresh-blog-square-thumbnail-small\";a:4:{s:4:\"file\";s:48:\"mackenzie-marco-XG88BYDSDZA-unsplash-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:40:\"mackenzie-marco-XG88BYDSDZA-unsplash.jpg\";}'),(294,102,'_thumbnail_id','103'),(295,102,'_heateor_sss_meta','a:2:{s:7:\"sharing\";i:0;s:16:\"vertical_sharing\";i:0;}'),(296,102,'_yoast_wpseo_content_score','30'),(297,102,'_yoast_wpseo_estimated-reading-time-minutes','3'),(298,102,'_yoast_wpseo_primary_category','10'),(299,106,'_field_1','Emma Grace Brown'),(300,106,'_field_2','[email protected]'),(301,106,'_field_3','Hi, \n\nLife during COVID has been… weird. Right? Our daily lives look almost nothing like they did a year ago. It’s not all bad though. That’s why I’m writing an article about the COVID adaptations we should make permanent moving forward and how to go about doing that. Here are the topics I plan to cover:\n\nFiguring out how to be happy spending time at home by creating a space you love and prioritizing healthy habits.\nFiercely supporting the local businesses that employ our neighbors and give back to our communities. \nConsistently making time for the things we love, like pursuing new hobbies or shifting career goals. \nSpending more time outdoors, learning to enjoy and respect nature. \n\nIf you think your readers would be interested in this content, I’ll be happy to send the article over to you when it’s done. There’s no charge, and I’d be happy to include a link back to a page on your website in the piece to help promote you. \n\nThank you!\nEmma Grace Brown\nEmmagracebrown.com'),(302,106,'_form_id','1'),(303,106,'_seq_num','4'),(306,108,'_oembed_546b21a119f5595996cb99c5f61367ac','<iframe title=\"BITCOIN LIVE : BTC, TECH STOCKS CONTINUE TO SLIDE. ETH STRONG\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/D7Zhr9Zk6oE?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(307,108,'_oembed_time_546b21a119f5595996cb99c5f61367ac','1638954335'),(308,109,'_wp_attached_file','2021/12/pexels-rodnae-productions-8370783.jpg'),(309,109,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:45:\"2021/12/pexels-rodnae-productions-8370783.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"pexels-rodnae-productions-8370783-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"pexels-rodnae-productions-8370783-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"pexels-rodnae-productions-8370783-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"refresh-blog-thumbnail\";a:4:{s:4:\"file\";s:45:\"pexels-rodnae-productions-8370783-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"refresh-blog-featured\";a:4:{s:4:\"file\";s:45:\"pexels-rodnae-productions-8370783-800x594.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:594;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"refresh-blog-square-thumbnail-small\";a:4:{s:4:\"file\";s:45:\"pexels-rodnae-productions-8370783-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;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:{}}}'),(310,108,'_edit_last','1'),(311,108,'_thumbnail_id','109'),(312,108,'_heateor_sss_meta','a:2:{s:7:\"sharing\";i:0;s:16:\"vertical_sharing\";i:0;}'),(313,108,'_yoast_wpseo_content_score','30'),(314,108,'_yoast_wpseo_estimated-reading-time-minutes','3'),(315,108,'_yoast_wpseo_primary_category','10'),(316,108,'_edit_lock','1638954240:1'),(319,113,'_field_1','Ted James'),(320,113,'_field_2','[email protected]'),(321,113,'_field_3','Hi there,\n\nBecause of the pandemic and the economic uncertainty that it caused, many businesses have found themselves in debt -- so much so that they are fighting to stay open.\n\nWhich is why I thought that it would be useful to provide your readers with advice on how businesses can get out of debt and increase their long-term financial health.\n\nWhat do you think? Would you like me to put an article together for you? In exchange, I can help you out by linking back to your website in the piece.\n\nThanks and all the best,\nTed James\nTedknowsmoney.com\[email protected]'),(322,113,'_form_id','1'),(323,113,'_seq_num','5'),(324,114,'_field_1','Nicola Reid'),(325,114,'_field_2','[email protected]'),(326,114,'_field_3','Hi,\n\nI just wanted to check back on my offer to write \nan article for you. If you’re interested I can \nstart working on it, so keep me posted. \n\nIf you successfully received my previous email, \nplease kindly disregard.\n\nThank you,\nNicola Reid\[email protected]'),(327,114,'_form_id','1'),(328,114,'_seq_num','6'),(329,115,'_field_1','Sam Marcum'),(330,115,'_field_2','[email protected]'),(331,115,'_field_3','Hi there,\n\nI believe that many business owners might profit from collaborating with a business coach. However, many are too busy and overburdened to see the indicators that they require coaching assistance.\n\nI was hoping to write an article for you on this topic. The piece will discuss the top indicators or signs that tell you when it’s time to hire a business coach and also how to look for a good one. I hope you’re interested, and if so, please let me know.\n\nThank you for taking the time to read this.\nSam Marcum\[email protected]\n'),(332,115,'_form_id','1'),(333,115,'_seq_num','7'),(334,116,'_field_1','Jessie.yin'),(335,116,'_field_2','[email protected]'),(336,116,'_field_3','Dear Sirs and Madams:\n\nIn response to the further deployment of the Ministry of Commerce and the National Health Commission of China, jointly “Contribute to a Global Community of Health for All” and strengthen global cooperation in the field of life sciences, the Opening Ceremony of the Beijing International Life and Health Industry Expo will be held online on July, 2022, Beijing time. Meanwhile, the Project Docking Fair will be held both online and offline from May to October, 2022, depending on the pandemic situation.\n\n\nTime:Opening Ceremony: September 7, 2022, Beijing time\n\n           Project Docking Fair: July to October, 2022\n\n\n    Exhibition Categories: Medical   Equipment, biological medicine, epidemic prevention, traditional   Chinese  medicine, medical cosmetology, health care, Pharmaceutical   equipment, raw material, digital healthcare, etc.\n\n    Organizers: Trade Development Bureau of the Ministry of Commerce of China、World Federation of Chinese Medicine Societies、Chinese Research Hospital Association、China Chamber of International Commerce\n\n    Organizing form:[http://www.360clhe.com]  +ZOOM\n\n   The exhibitors of the Expo are all from the white list of the Ministry of Commerce and have all necessary certifications. The fair will provide Chinese and foreign enterprises with a safe and efficient platform for communication, exchange, cooperation and negotiation through online and offline joint offices.\n\nFor more details, please contact us\n\nOrganizing Committee:\n\nSecretary General: Mr. Qiu +86 15801079798\n\nEmail:[email protected]\n\nWebsite:http://www.360clhe.com\n\n'),(337,116,'_form_id','1'),(338,116,'_seq_num','8'),(339,117,'_field_1','Jillian Day'),(340,117,'_field_2','[email protected]'),(341,117,'_field_3','Hi,\n\nAre you interested in an article from me offering tips to those with disabilities on how to start a business? I plan to write on topics like how to cover startup costs, necessary legal steps for launching your business, and more.\n\nIf this sounds like a piece you’d publish to your website’s blog, I’ll get started on my research and send you a draft as quickly as I can. There is absolutely no cost for this - creating resources for websites like yours is one of my favorite parts of my work with 508assist.org. \n\nLooking forward to hearing from you!\n\nThanks,\nJillian Day\[email protected] \n508assist.org\n\nP.S. Don\'t want to hear from me going forward? Please just reply “unsubscribe”\n'),(342,117,'_form_id','1'),(343,117,'_seq_num','9'),(344,118,'_field_1','Teresa G.'),(345,118,'_field_2','[email protected]'),(346,118,'_field_3','Hi,\n\nI know there are many seniors who are looking to start a business during retirement - it’s a great way to keep a steady income and to keep your mind mentally sharp. \n\nI always suggest house flipping as a good way to earn income. Though it’s not as “passive” as some may think, it can be an incredibly lucrative investment.\n\nMay I write about this topic in a complimentary article for your website?\n\nI\'ll be sure to cover all the basics on how seniors can get into the house flipping business and become successful at it, including: \nhow to find the perfect property, \nhow to finance the expenses, \nhow to manage payroll for employees and contractors, etc. \n\nWhat do you think?\n\nLooking forward to hearing back,\nTeresa G.\[email protected] \n\nP.S. Please accept my apologies for writing this email without your prior permission - reply \"unsubscribe\" and I won\'t email you again!'),(347,118,'_form_id','1'),(348,118,'_seq_num','10'),(349,120,'_field_1','Amy'),(350,120,'_field_2','[email protected]'),(351,120,'_field_3','Hello! I\'d like to contribute an article to your website on sustainable business practices for aspiring entrepreneurs.  \n\nThe goal of the post will be to teach your readers how to find (and utilize) \"sustainable possibilities\" in their future businesses.  \n\nIs this of interest? I’ll write this for free and the post will be unique to your site.  \n\nThank you for considering my offer! \nAmy Collett of Bizwell.org   \n\nP.S. Interested in the offer, but perhaps for a different topic? No problem, just reply and we can figure something else out! Or, if you\'d rather not hear from me again, just let me know that.'),(352,120,'_form_id','1'),(353,120,'_seq_num','11'),(354,121,'_field_1','Ibrahim Ripon'),(355,121,'_field_2','[email protected]'),(356,121,'_field_3','Hi There, This is Abram from Nanjing Superyears Gene Technology, China. Superyears is the proud manufacturer of self developed sanger sequencing DNA Analyzer, RTqPCR, STR reagents for HID etc. You may refer to our website: www.superyears.com. We\'re dedicated to expand our Business in India. We support OEM/ODM or customized Business possibility,\n\nPlease knock us for further scientific exploration together. Thank You.\n\nBest Regards,\nIbrahim Ripon Abram\nCountry Manager'),(357,121,'_form_id','1'),(358,121,'_seq_num','12'),(359,122,'_field_1','Ibrahim Ripon'),(360,122,'_field_2','[email protected]'),(361,122,'_field_3','Dear GENOMEVALLEY, INDIA\nGreetings from Nanjing Superyears Gene Technology, China, a leading provider of genetic analyzer solutions in China. We are thrilled to introduce our top-of-the-line Sanger Sequencer, which is widely considered the best in the market.\nWith the rapid advancements in genetic research, it has become increasingly important to have access to reliable and accurate sequencing equipment. Our Sanger Sequencer offers a wide range of features and capabilities, making it the ideal choice for any lab or research facility.\nOur state-of-the-art Sanger Sequencer boasts an impressive accuracy rate of 99.999%, ensuring that you can rely on the results produced by our equipment. It is also user-friendly, making it easy for your team to operate and maintain.\nIn addition, our team of experts is available to provide ongoing support and training, ensuring that you get the most out of your investment. Whether you need assistance with installation, operation, or maintenance, we are here to help.\nWe are confident that you will find our Sanger Sequencer to be an exceptional value for your investment, and we would be honored to have the opportunity to provide you with more information and a demonstration of its capabilities.\nThank you for considering Superyears Gene Technology company for your genetic analysis needs. We look forward to the opportunity to work with you and provide you with the best possible solutions.\nSincerely,\nIbrahim Ripon Abram\nCountry Manager\nNanjing Superyears Gene Technology, China'),(362,122,'_form_id','1'),(363,122,'_seq_num','13');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

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

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (5,1,'2020-10-08 07:36:35','2020-10-08 07:36:35','<!-- wp:paragraph -->\n<p>Hyderabad city is stuffed with various choices for touring as well as convenience too. The greater part of the Hyderabad inns dominate in the culinary workmanship and merit visiting the same number of times as you wish. The Hyderabadi Biryani, really luxurious, is the fundamental exceptional food thing at the vast majority of the lodgings here.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On the off chance that you visit Hyderabad, at that point you can\'t pass up this food strength. Other than the nearby food, sightseers can savor worldwide cooking at a large number of the eating roads. The greater part of the inns are found deliberately in nearness to the conciliatory and business regions of Hyderabad. On the Hyderabad map you make certain to discover numerous lodgings to fit into your financial plan and simultaneously offer the ideal extravagance and unwinding openings you are searching for.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Westin Mindspace inn in Hyderabad is where any vacationer can be at their best. On the off chance that you are looking towards a retreat that is genuinely extravagant and untainted then this is the perfect spot to be in. Inn Tara, prominently known as the Ramoji Film City, is the ideal objective for unwinding and extraordinary diversion. This is extraordinary compared to other Hyderabad inns and is a complex is visited by a large number of sightseers all during that time to delight in its interminable recreational and relaxation openings.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Arranged in the Banjara Hills, a top notch lodging offering the best convenience and recreational offices is the Fortune Park Vallabha, solely for business explorers. To get an incentive for your cash is Hotel Silver Park, a 3 star business class inn offering extraordinary incentive for your cash spent. It has been offering serious administrations in the accommodation business since twenty years now.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At nearness to the railroad station and the air terminal is the Aditya Park Inn, effectively available and making an ideal stop for any vacationer visiting Hyderabad. Over the Banjara Lake and in nearness of the Banjara Hills shopping and business zones is the Keys Hotel Bhaskar Plaza. Before you plan your outing here, a smart thought is view the Hyderabad guide to recognize probably the best inns here.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While you remain here you can capitalize on the shopping openings gave. In the event that you are a relaxation and business explorer, at that point Aditya Hometel arranged at Ameerpet makes an ideal objective. It has been planned only to suit the requirements of any explorer and is a notable inn situated at closeness to the Hyderabad air terminal.</p>\n<!-- /wp:paragraph -->','Hyderabad - India\'s Genome Valley','','publish','closed','closed','','hyderabad-indias-genome-valley','','','2020-10-08 07:36:35','2020-10-08 07:36:35','',0,'http://genomevalley.org/?p=5',0,'post','',0),(6,1,'2020-10-08 07:35:28','2020-10-08 07:35:28','','895','','inherit','closed','closed','','895','','','2020-10-08 07:35:28','2020-10-08 07:35:28','',5,'http://genomevalley.org/wp-content/uploads/2020/10/895.jpg',0,'attachment','image/jpeg',0),(7,1,'2020-10-08 07:36:35','2020-10-08 07:36:35','<!-- wp:paragraph -->\n<p>Hyderabad city is stuffed with various choices for touring as well as convenience too. The greater part of the Hyderabad inns dominate in the culinary workmanship and merit visiting the same number of times as you wish. The Hyderabadi Biryani, really luxurious, is the fundamental exceptional food thing at the vast majority of the lodgings here.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On the off chance that you visit Hyderabad, at that point you can\'t pass up this food strength. Other than the nearby food, sightseers can savor worldwide cooking at a large number of the eating roads. The greater part of the inns are found deliberately in nearness to the conciliatory and business regions of Hyderabad. On the Hyderabad map you make certain to discover numerous lodgings to fit into your financial plan and simultaneously offer the ideal extravagance and unwinding openings you are searching for.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Westin Mindspace inn in Hyderabad is where any vacationer can be at their best. On the off chance that you are looking towards a retreat that is genuinely extravagant and untainted then this is the perfect spot to be in. Inn Tara, prominently known as the Ramoji Film City, is the ideal objective for unwinding and extraordinary diversion. This is extraordinary compared to other Hyderabad inns and is a complex is visited by a large number of sightseers all during that time to delight in its interminable recreational and relaxation openings.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Arranged in the Banjara Hills, a top notch lodging offering the best convenience and recreational offices is the Fortune Park Vallabha, solely for business explorers. To get an incentive for your cash is Hotel Silver Park, a 3 star business class inn offering extraordinary incentive for your cash spent. It has been offering serious administrations in the accommodation business since twenty years now.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At nearness to the railroad station and the air terminal is the Aditya Park Inn, effectively available and making an ideal stop for any vacationer visiting Hyderabad. Over the Banjara Lake and in nearness of the Banjara Hills shopping and business zones is the Keys Hotel Bhaskar Plaza. Before you plan your outing here, a smart thought is view the Hyderabad guide to recognize probably the best inns here.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While you remain here you can capitalize on the shopping openings gave. In the event that you are a relaxation and business explorer, at that point Aditya Hometel arranged at Ameerpet makes an ideal objective. It has been planned only to suit the requirements of any explorer and is a notable inn situated at closeness to the Hyderabad air terminal.</p>\n<!-- /wp:paragraph -->','Hyderabad - India\'s Genome Valley','','inherit','closed','closed','','5-revision-v1','','','2020-10-08 07:36:35','2020-10-08 07:36:35','',5,'http://genomevalley.org/5-revision-v1/',0,'revision','',0),(8,1,'2020-10-08 07:43:48','2020-10-08 07:43:48','India as a developing economy has come miles over the most recent couple of years. This is very clear with the sort of advancement, our country has accomplished in various parts, be IT, Banking, Telecommunications, Tourism or some other. With this, the openings for work lying with the country have likewise been growing. This has brought about better vocation possibilities for everybody from a specialist to an engineer. Above everything, the mediums to pay special mind to work in the nation are more advantageous at this point. One can just utilize the activity entryways and get the chance to right places.\r\n\r\nWith regards to India, the significant urban communities like Delhi, Bangalore, Chennai and Hyderabad produce the vast majority of the positions. With such chances, an enormous number of occupation searchers from all over the country relocate to these urban areas.\r\n\r\nHow about we have a nearby glance at the sort of openings for work these Indian urban areas produce.\r\n\r\nOccupations in Delhi\r\n\r\nDelhi, the public capital is one of the metropolitan urban communities that pull in numerous to come and work here. The sort of framework and monetary development, the city has accomplished has fundamentally contributed in making it a center for businesses and worldwide brands. Discussion about inns or media houses, IT organizations or broadcast communications, it has got everything. Furthermore, the connecting NCR locale has made the public capital considerably more commendable. In the event that you are remaining in the public capital or any of the connecting districts in NCR, you have definitely got the freedom to investigate the most astounding openings for work existing here. A portion of the rumored brands situated in NCR incorporate Nokia, Siemens Networks, Ciena Corporation, Cognizant Technology Solutions, Motorola, HP, Mahindra, Satyam, HCL Technologies, IBM, Microsoft, NIIT, Dell Inc, Aricent, Sapient and the rundown continues forever.\r\n\r\nOccupations in Bangalore\r\n\r\nKnown as The Silicon Valley of India, Bangalore utilizes about 35% of the Indian IT experts. The city is likewise certify for most elevated IT related fares in the nation. Bangalore as a center point of IT segment pulls experts from everywhere the country. Accel Frontline Ltd., HCL Technologies, iGate, Infosys, Larsen and Toubro Infotech, Microland, MindTree, Tata Consultancy Services, Tech Mahindra, ThoughtWorks and Wipro a portion of the IT organizations situated in the city. Other than the IT blast, the city observers to be a center of car and avionics enterprises as well. Assembling and Biotechnology are different businesses that create occupations in the city.\r\n\r\nOccupations in Hyderabad\r\n\r\nHyderabad, otherwise called \"Genome Valley of India\" consistently thinks of incredible openings for work for experts in IT and biotechnology. The city denotes the presence of in excess of 1,300 IT organizations in it, which incorporates Facebook, Microsoft, Oracle, Google, Amazon and Dell. Hyderabad even records for the 90% of the state\'s IT fares of over Rs. 4000 Crore with around 5 lakh occupations. Further, the city is otherwise called Cyberabad inferable from its reinforced situation as a worldwide focal point of IT segment. The city consistently brings along many openings for work for business measure re-appropriating, media outlets and budgetary administrations.\r\n\r\nOccupations in Chennai\r\n\r\nIn Chennai, programming improvement and business measure re-appropriating and gadgets producing have been the central point for the city\'s monetary development. These segments have additionally been the variables for countless individuals moving to Hyderabad to investigate vocation possibilities. The city is likewise authorize for 60% for the nation\'s car sends out. In addition, it\'s is likewise called the Banking Capital of the country, which opens up the possibilities for banking experts in the city.\r\n\r\nThese Indian urban areas over the most recent couple of years have developed at an a lot quicker movement and have additionally been the most wanted objective for experts from all the fields. It\'s not simply the IT blast that enables these urban areas yet additionally different divisions like Hospitality, Retail, Telecom and Healthcare. In addition, the new media and computerized space is making a blast for Digital Marketing in these urban communities. This is one more territory that numerous youthful experts are discovered to investigate.','What Does India Hold for Job Seekers?','','publish','closed','closed','','what-does-india-hold-for-job-seekers','','','2020-10-08 07:43:48','2020-10-08 07:43:48','',0,'http://genomevalley.org/?p=8',0,'post','',0),(9,1,'2020-10-08 07:43:05','2020-10-08 07:43:05','','896','','inherit','closed','closed','','896','','','2020-10-08 07:43:05','2020-10-08 07:43:05','',8,'http://genomevalley.org/wp-content/uploads/2020/10/896.jpg',0,'attachment','image/jpeg',0),(10,1,'2020-10-08 07:43:48','2020-10-08 07:43:48','India as a developing economy has come miles over the most recent couple of years. This is very clear with the sort of advancement, our country has accomplished in various parts, be IT, Banking, Telecommunications, Tourism or some other. With this, the openings for work lying with the country have likewise been growing. This has brought about better vocation possibilities for everybody from a specialist to an engineer. Above everything, the mediums to pay special mind to work in the nation are more advantageous at this point. One can just utilize the activity entryways and get the chance to right places.\r\n\r\nWith regards to India, the significant urban communities like Delhi, Bangalore, Chennai and Hyderabad produce the vast majority of the positions. With such chances, an enormous number of occupation searchers from all over the country relocate to these urban areas.\r\n\r\nHow about we have a nearby glance at the sort of openings for work these Indian urban areas produce.\r\n\r\nOccupations in Delhi\r\n\r\nDelhi, the public capital is one of the metropolitan urban communities that pull in numerous to come and work here. The sort of framework and monetary development, the city has accomplished has fundamentally contributed in making it a center for businesses and worldwide brands. Discussion about inns or media houses, IT organizations or broadcast communications, it has got everything. Furthermore, the connecting NCR locale has made the public capital considerably more commendable. In the event that you are remaining in the public capital or any of the connecting districts in NCR, you have definitely got the freedom to investigate the most astounding openings for work existing here. A portion of the rumored brands situated in NCR incorporate Nokia, Siemens Networks, Ciena Corporation, Cognizant Technology Solutions, Motorola, HP, Mahindra, Satyam, HCL Technologies, IBM, Microsoft, NIIT, Dell Inc, Aricent, Sapient and the rundown continues forever.\r\n\r\nOccupations in Bangalore\r\n\r\nKnown as The Silicon Valley of India, Bangalore utilizes about 35% of the Indian IT experts. The city is likewise certify for most elevated IT related fares in the nation. Bangalore as a center point of IT segment pulls experts from everywhere the country. Accel Frontline Ltd., HCL Technologies, iGate, Infosys, Larsen and Toubro Infotech, Microland, MindTree, Tata Consultancy Services, Tech Mahindra, ThoughtWorks and Wipro a portion of the IT organizations situated in the city. Other than the IT blast, the city observers to be a center of car and avionics enterprises as well. Assembling and Biotechnology are different businesses that create occupations in the city.\r\n\r\nOccupations in Hyderabad\r\n\r\nHyderabad, otherwise called \"Genome Valley of India\" consistently thinks of incredible openings for work for experts in IT and biotechnology. The city denotes the presence of in excess of 1,300 IT organizations in it, which incorporates Facebook, Microsoft, Oracle, Google, Amazon and Dell. Hyderabad even records for the 90% of the state\'s IT fares of over Rs. 4000 Crore with around 5 lakh occupations. Further, the city is otherwise called Cyberabad inferable from its reinforced situation as a worldwide focal point of IT segment. The city consistently brings along many openings for work for business measure re-appropriating, media outlets and budgetary administrations.\r\n\r\nOccupations in Chennai\r\n\r\nIn Chennai, programming improvement and business measure re-appropriating and gadgets producing have been the central point for the city\'s monetary development. These segments have additionally been the variables for countless individuals moving to Hyderabad to investigate vocation possibilities. The city is likewise authorize for 60% for the nation\'s car sends out. In addition, it\'s is likewise called the Banking Capital of the country, which opens up the possibilities for banking experts in the city.\r\n\r\nThese Indian urban areas over the most recent couple of years have developed at an a lot quicker movement and have additionally been the most wanted objective for experts from all the fields. It\'s not simply the IT blast that enables these urban areas yet additionally different divisions like Hospitality, Retail, Telecom and Healthcare. In addition, the new media and computerized space is making a blast for Digital Marketing in these urban communities. This is one more territory that numerous youthful experts are discovered to investigate.','What Does India Hold for Job Seekers?','','inherit','closed','closed','','8-revision-v1','','','2020-10-08 07:43:48','2020-10-08 07:43:48','',8,'http://genomevalley.org/8-revision-v1/',0,'revision','',0),(15,1,'2020-10-08 07:48:55','2020-10-08 07:48:55','','Home','','publish','closed','closed','','home','','','2020-10-08 07:48:55','2020-10-08 07:48:55','',0,'http://genomevalley.org/?page_id=15',0,'page','',0),(16,1,'2020-10-08 07:51:06','2020-10-08 07:51:06','Hyderabad was established in the year, 1591 by Mohammed Quli Qutub Shah, the fifth ruler of Qutb Shahi Dynasty. It was controlled by progressive Nizams of Asaf Jahi Dynasty until the state was converged into Indian Union in 1948.\r\n\r\nDespite the fact that it is one of the quickest developing urban areas of India, and has risen as a solid industrial,commercial and innovation focus, it actually safeguards the previous wonderful qualities. Not just pearls and Nizams it has other striking credits too.\r\n\r\nHyderabad, which is the capital of the south Indian territory of Andhra Pradesh is situated in the banks of Musi River in Deccan Plateau. Its 7.75 million occupants make it the fourth most crowded Indian city the 6th most crowded metropolitan agglomeration. Hyderabad is known as \"India\'s drug capital\" and \"Genome Valley of India\"due to the exceptional development of drug and biotechnology enterprises.\r\n\r\nIt is otherwise called \"Digital city\" as it is one among the worldwide focuses of data innovation. In spite of the fact that every one of these qualifications add to its gigantic pride, the remarkable name PEARL CITY is the most mainstream term that comes in the brain of each Indian when he considers Hyderabad. It is because of its critical function in the exchange of pearls. Pearl exchanging is going on in the city for over numerous hundreds of years and henceforth it has an unavoidable job.\r\n\r\nDuring the Qutb Shahi rule, Golconda was one of the main business sectors in precious stones and pearls. The Qutb Shahi rulers and the Nizams cherished pearls and jewels and belittled the exchange a detailed way.\r\n\r\nThe Azab Jahi Nizams wore robes of pearls studded with precious stones as a feature of their imperial benefits. They likewise utilized the glue of squashed pearls to initiate excellence.\r\n\r\nThey had a lavish existence and their luxuriousness brought experts from everywhere the world particularly from the Middle East where uncommon pearls were bountiful.\r\n\r\nThe sovereigns were secured with pearls and weighed against pearls on their introduction to the world days.\r\n\r\nCraftsmanship, nature of greatness, assortment and modest work cost are the four imperative factors that elevate the fame of Hyderabad pearls. Aside from magnificent pearls, the certainty of innovation is the guaranteed blessing that we get from the city vendors.\r\n\r\nThus we get unique pearls for sensible cost from the pearl bazaars unafraid of phony items. The decisions of determination are multi overlap. It turns into a family convention for a few Indian families to buy Hyderabad pearls as some pearl stores are in any event, existing for over a century.\r\n\r\nThe vendors are supposed to be the bosses of the market and Hyderabad is without a doubt the biggest exchanging place for pearls India. Here the diamond setters hold their craftsmanship for quite a long time.\r\n\r\nThey join pearls with the sparkle of gold, rubies and emeralds. They make huge styles of trimmings with appealing plans. In the previous scarcely any many years, there has been a steady impact of western plans in the market.\r\n\r\nThere is a whole road which only involves pearl shops named \'Patther Gatti\'. The \'satlada\' and \'panchlada haar\' are seven and five stringed neckbands.\r\n\r\nThey are frequently dispersed with emerald or onyx dabs set in nine carat gold. Hoops, for example, karanphool and cholaphool set with whole jewels and pearls are popular among Hyderabad ladies.\r\n\r\nThe pearl markets in the city additionally offer boundless assortments of chokers and mementos.\r\n\r\nThere is as yet a fascination for the stunning Hyderabad bangles among a great many Indian ladies. There are 400 and fifty shops flanking either side of the world celebrated Charminar.\r\n\r\nCharminar has an intriguing history. Deficiency of water and continuous scourges of plague and cholera caused Mohammed Quli Qutub Shah to wander outward to build up another city with the Charminar at its middle and with four incredible streets fanning out four cardinal headings.\r\n\r\nConsequently Charminar remains as an extraordinary milestone for the city. There are around 2,000 and 500 skilled workers who are fit for embellishment enchantment around your hands as bangles. Exceptionally old bazaars encompassing this landmark are locked in with the boisterous exchange of pearls and wedding adornments.\r\n\r\nTalented work is the advantage of Hyderabad pearl market. It is watched as the special kind of mystery and the profoundly talented activity of boring is as yet done physically. Such a flawlessness is disregarded ages this committed labor is the establishment for the city to turn into an extreme objective for pearls.\r\n\r\nTheir unequaled craftsmanship is stunning and the expense of work is additionally lower nearly. The craftsmans here are gifted in piercing and hanging pearls without harming them.\r\n\r\nVendors import crude pearls from China and Japan and draws in travelers. In the event that you visit a preparing focus in the city,you can observer an immense number of pearl sorters, drillers and stringers with huge experience as they are doing it as their family calling.\r\n\r\nAs pearls become a fundamental aspect of their life, there is no shortage for inventiveness or quality. They actually spread the regularly enduring greatness of their pearl city.\r\n\r\nBulbul is additionally one of the prime supporters of Charminar Pearls and has been associated with it since its origin.\r\n\r\nA MBA in Finance, in the wake of going through 10 years in money related administrations, she took a holiday and went to her pastime, finding and getting familiar with pearls.','About','','publish','closed','closed','','about','','','2020-10-08 07:51:06','2020-10-08 07:51:06','',0,'http://genomevalley.org/?page_id=16',0,'page','',0),(17,1,'2020-10-08 07:51:58','2020-10-08 07:51:58','[ninja_form id=\'1\']','Contact Us','','publish','closed','closed','','contact-us','','','2020-10-08 07:51:58','2020-10-08 07:51:58','',0,'http://genomevalley.org/?page_id=17',0,'page','',0),(18,1,'2020-10-08 07:53:30','2020-10-08 07:53:30','Last updated: [wpautoterms last_updated_date]\r\n\r\n[wpautoterms company_name] (\"us\", \"we\", or \"our\") operates the [wpautoterms site_name] website (the \"Service\").\r\n\r\nThis page informs you of our policies regarding the collection, use and disclosure of Personal Information when you use our Service.\r\n\r\nWe will not use or share your information with anyone except as described in this Privacy Policy.\r\n\r\nWe use your Personal Information for providing and improving the Service. By using the Service, you agree to the collection and use of information in accordance with this policy. Unless otherwise defined in this Privacy Policy, terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, accessible at [wpautoterms site_url]\r\n<h2>Information Collection And Use</h2>\r\nWhile using our Service, we may ask you to provide us with certain personally identifiable information that can be used to contact or identify you. Personally identifiable information (\"Personal Information\") may include, but is not limited to:\r\n<ul>\r\n 	<li>Name</li>\r\n 	<li>Email address</li>\r\n 	<li>Telephone number</li>\r\n 	<li>Address</li>\r\n</ul>\r\n<h2>Log Data</h2>\r\nWe collect information that your browser sends whenever you visit our Service (\"Log Data\"). This Log Data may include information such as your computer\'s Internet Protocol (\"IP\") address, browser type, browser version, the pages of our Service that you visit, the time and date of your visit, the time spent on those pages and other statistics.\r\n<h2>Cookies</h2>\r\nCookies are files with small amount of data, which may include an anonymous unique identifier. Cookies are sent to your browser from a web site and stored on your computer\'s hard drive.\r\n\r\nWe use \"cookies\" to collect information. You can instruct your browser to refuse all cookies or to indicate when a cookie is being sent. However, if you do not accept cookies, you may not be able to use some portions of our Service.\r\n<h2>Service Providers</h2>\r\nWe may employ third party companies and individuals to facilitate our Service, to provide the Service on our behalf, to perform Service-related services or to assist us in analyzing how our Service is used.\r\n\r\nThese third parties have access to your Personal Information only to perform these tasks on our behalf and are obligated not to disclose or use it for any other purpose.\r\n<h2>Security</h2>\r\nThe security of your Personal Information is important to us, but remember that no method of transmission over the Internet, or method of electronic storage is 100% secure. While we strive to use commercially acceptable means to protect your Personal Information, we cannot guarantee its absolute security.\r\n<h2>Links To Other Sites</h2>\r\nOur Service may contain links to other sites that are not operated by us. If you click on a third party link, you will be directed to that third party\'s site. We strongly advise you to review the Privacy Policy of every site you visit.\r\n\r\nWe have no control over, and assume no responsibility for the content, privacy policies or practices of any third party sites or services.\r\n<h2>Children\'s Privacy</h2>\r\nOur Service does not address anyone under the age of 18 (\"Children\").\r\n\r\nWe do not knowingly collect personally identifiable information from children under 18. If you are a parent or guardian and you are aware that your child has provided us with Personal Information, please contact us. If we discover that a child under 18 has provided us with Personal Information, we will delete such information from our servers immediately.\r\n<h2>Compliance With Laws</h2>\r\nWe will disclose your Personal Information where required to do so by law or subpoena.\r\n<h2>Changes To This Privacy Policy</h2>\r\nWe may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page.\r\n\r\nYou are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.\r\n<h2>Contact Us</h2>\r\nIf you have any questions about this Privacy Policy, please contact us.','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2020-10-08 07:53:30','2020-10-08 07:53:30','',0,'http://genomevalley.org/?page_id=18',0,'page','',0),(19,1,'2020-10-08 07:53:42','2020-10-08 07:53:42','Last updated: [wpautoterms last_updated_date]\r\n\r\nPlease read these Terms of Use (\"Terms\", \"Terms of Use\") carefully before using the [wpautoterms site_url] website (the \"Service\") operated by [wpautoterms company_name] (\"us\", \"we\", or \"our\").\r\n\r\nYour access to and use of the Service is conditioned on your acceptance of and compliance with these Terms. These Terms apply to all visitors, users and others who access or use the Service.\r\n\r\nBy accessing or using the Service you agree to be bound by these Terms. If you disagree with any part of the terms then you may not access the Service.\r\n<h2>Intellectual Property</h2>\r\nThe Service and its original content, features and functionality are and will remain the exclusive property of [wpautoterms company_name] and its licensors.\r\n<h2>Links To Other Web Sites</h2>\r\nOur Service may contain links to third-party web sites or services that are not owned or controlled by [wpautoterms company_name].\r\n\r\n[wpautoterms company_name] has no control over, and assumes no responsibility for, the content, privacy policies, or practices of any third party web sites or services. You further acknowledge and agree that [wpautoterms company_name] shall not be responsible or liable, directly or indirectly, for any damage or loss caused or alleged to be caused by or in connection with use of or reliance on any such content, goods or services available on or through any such web sites or services.\r\n\r\nWe strongly advise you to read the terms and conditions and privacy policies of any third-party web sites or services that you visit.\r\n<h2>Termination</h2>\r\nWe may terminate or suspend access to our Service immediately, without prior notice or liability, for any reason whatsoever, including without limitation if you breach the Terms.\r\n\r\nAll provisions of the Terms which by their nature should survive termination shall survive termination, including, without limitation, ownership provisions, warranty disclaimers, indemnity and limitations of liability.\r\n<h2>Disclaimer</h2>\r\nYour use of the Service is at your sole risk. The Service is provided on an \"AS IS\" and \"AS AVAILABLE\" basis. The Service is provided without warranties of any kind, whether express or implied, including, but not limited to, implied warranties of merchantability, fitness for a particular purpose, non-infringement or course of performance.\r\n<h2>Governing Law</h2>\r\nThese Terms shall be governed and construed in accordance with the laws of United States without regard to its conflict of law provisions.\r\n\r\nOur failure to enforce any right or provision of these Terms will not be considered a waiver of those rights. If any provision of these Terms is held to be invalid or unenforceable by a court, the remaining provisions of these Terms will remain in effect. These Terms constitute the entire agreement between us regarding our Service, and supersede and replace any prior agreements we might have between us regarding the Service.\r\n<h2>Changes</h2>\r\nWe reserve the right, at our sole discretion, to modify or replace these Terms at any time. If a revision is material we will try to provide at least 30 days notice prior to any new terms taking effect. What constitutes a material change will be determined at our sole discretion.\r\n\r\nBy continuing to access or use our Service after those revisions become effective, you agree to be bound by the revised terms. If you do not agree to the new terms, please stop using the Service.\r\n<h2>Contact Us</h2>\r\nIf you have any questions about these Terms, please contact us.','Terms and Conditions','','publish','closed','closed','','terms-and-conditions','','','2020-10-08 07:53:42','2020-10-08 07:53:42','',0,'http://genomevalley.org/?page_id=19',0,'page','',0),(20,1,'2020-10-08 07:48:55','2020-10-08 07:48:55','','Home','','inherit','closed','closed','','15-revision-v1','','','2020-10-08 07:48:55','2020-10-08 07:48:55','',15,'http://genomevalley.org/15-revision-v1/',0,'revision','',0),(21,1,'2020-10-08 07:51:06','2020-10-08 07:51:06','Hyderabad was established in the year, 1591 by Mohammed Quli Qutub Shah, the fifth ruler of Qutb Shahi Dynasty. It was controlled by progressive Nizams of Asaf Jahi Dynasty until the state was converged into Indian Union in 1948.\r\n\r\nDespite the fact that it is one of the quickest developing urban areas of India, and has risen as a solid industrial,commercial and innovation focus, it actually safeguards the previous wonderful qualities. Not just pearls and Nizams it has other striking credits too.\r\n\r\nHyderabad, which is the capital of the south Indian territory of Andhra Pradesh is situated in the banks of Musi River in Deccan Plateau. Its 7.75 million occupants make it the fourth most crowded Indian city the 6th most crowded metropolitan agglomeration. Hyderabad is known as \"India\'s drug capital\" and \"Genome Valley of India\"due to the exceptional development of drug and biotechnology enterprises.\r\n\r\nIt is otherwise called \"Digital city\" as it is one among the worldwide focuses of data innovation. In spite of the fact that every one of these qualifications add to its gigantic pride, the remarkable name PEARL CITY is the most mainstream term that comes in the brain of each Indian when he considers Hyderabad. It is because of its critical function in the exchange of pearls. Pearl exchanging is going on in the city for over numerous hundreds of years and henceforth it has an unavoidable job.\r\n\r\nDuring the Qutb Shahi rule, Golconda was one of the main business sectors in precious stones and pearls. The Qutb Shahi rulers and the Nizams cherished pearls and jewels and belittled the exchange a detailed way.\r\n\r\nThe Azab Jahi Nizams wore robes of pearls studded with precious stones as a feature of their imperial benefits. They likewise utilized the glue of squashed pearls to initiate excellence.\r\n\r\nThey had a lavish existence and their luxuriousness brought experts from everywhere the world particularly from the Middle East where uncommon pearls were bountiful.\r\n\r\nThe sovereigns were secured with pearls and weighed against pearls on their introduction to the world days.\r\n\r\nCraftsmanship, nature of greatness, assortment and modest work cost are the four imperative factors that elevate the fame of Hyderabad pearls. Aside from magnificent pearls, the certainty of innovation is the guaranteed blessing that we get from the city vendors.\r\n\r\nThus we get unique pearls for sensible cost from the pearl bazaars unafraid of phony items. The decisions of determination are multi overlap. It turns into a family convention for a few Indian families to buy Hyderabad pearls as some pearl stores are in any event, existing for over a century.\r\n\r\nThe vendors are supposed to be the bosses of the market and Hyderabad is without a doubt the biggest exchanging place for pearls India. Here the diamond setters hold their craftsmanship for quite a long time.\r\n\r\nThey join pearls with the sparkle of gold, rubies and emeralds. They make huge styles of trimmings with appealing plans. In the previous scarcely any many years, there has been a steady impact of western plans in the market.\r\n\r\nThere is a whole road which only involves pearl shops named \'Patther Gatti\'. The \'satlada\' and \'panchlada haar\' are seven and five stringed neckbands.\r\n\r\nThey are frequently dispersed with emerald or onyx dabs set in nine carat gold. Hoops, for example, karanphool and cholaphool set with whole jewels and pearls are popular among Hyderabad ladies.\r\n\r\nThe pearl markets in the city additionally offer boundless assortments of chokers and mementos.\r\n\r\nThere is as yet a fascination for the stunning Hyderabad bangles among a great many Indian ladies. There are 400 and fifty shops flanking either side of the world celebrated Charminar.\r\n\r\nCharminar has an intriguing history. Deficiency of water and continuous scourges of plague and cholera caused Mohammed Quli Qutub Shah to wander outward to build up another city with the Charminar at its middle and with four incredible streets fanning out four cardinal headings.\r\n\r\nConsequently Charminar remains as an extraordinary milestone for the city. There are around 2,000 and 500 skilled workers who are fit for embellishment enchantment around your hands as bangles. Exceptionally old bazaars encompassing this landmark are locked in with the boisterous exchange of pearls and wedding adornments.\r\n\r\nTalented work is the advantage of Hyderabad pearl market. It is watched as the special kind of mystery and the profoundly talented activity of boring is as yet done physically. Such a flawlessness is disregarded ages this committed labor is the establishment for the city to turn into an extreme objective for pearls.\r\n\r\nTheir unequaled craftsmanship is stunning and the expense of work is additionally lower nearly. The craftsmans here are gifted in piercing and hanging pearls without harming them.\r\n\r\nVendors import crude pearls from China and Japan and draws in travelers. In the event that you visit a preparing focus in the city,you can observer an immense number of pearl sorters, drillers and stringers with huge experience as they are doing it as their family calling.\r\n\r\nAs pearls become a fundamental aspect of their life, there is no shortage for inventiveness or quality. They actually spread the regularly enduring greatness of their pearl city.\r\n\r\nBulbul is additionally one of the prime supporters of Charminar Pearls and has been associated with it since its origin.\r\n\r\nA MBA in Finance, in the wake of going through 10 years in money related administrations, she took a holiday and went to her pastime, finding and getting familiar with pearls.','About','','inherit','closed','closed','','16-revision-v1','','','2020-10-08 07:51:06','2020-10-08 07:51:06','',16,'http://genomevalley.org/16-revision-v1/',0,'revision','',0),(22,1,'2020-10-08 07:51:58','2020-10-08 07:51:58','[ninja_form id=\'1\']','Contact Us','','inherit','closed','closed','','17-revision-v1','','','2020-10-08 07:51:58','2020-10-08 07:51:58','',17,'http://genomevalley.org/17-revision-v1/',0,'revision','',0),(31,1,'2020-10-08 07:53:30','2020-10-08 07:53:30','Last updated: [wpautoterms last_updated_date]\r\n\r\n[wpautoterms company_name] (\"us\", \"we\", or \"our\") operates the [wpautoterms site_name] website (the \"Service\").\r\n\r\nThis page informs you of our policies regarding the collection, use and disclosure of Personal Information when you use our Service.\r\n\r\nWe will not use or share your information with anyone except as described in this Privacy Policy.\r\n\r\nWe use your Personal Information for providing and improving the Service. By using the Service, you agree to the collection and use of information in accordance with this policy. Unless otherwise defined in this Privacy Policy, terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, accessible at [wpautoterms site_url]\r\n<h2>Information Collection And Use</h2>\r\nWhile using our Service, we may ask you to provide us with certain personally identifiable information that can be used to contact or identify you. Personally identifiable information (\"Personal Information\") may include, but is not limited to:\r\n<ul>\r\n 	<li>Name</li>\r\n 	<li>Email address</li>\r\n 	<li>Telephone number</li>\r\n 	<li>Address</li>\r\n</ul>\r\n<h2>Log Data</h2>\r\nWe collect information that your browser sends whenever you visit our Service (\"Log Data\"). This Log Data may include information such as your computer\'s Internet Protocol (\"IP\") address, browser type, browser version, the pages of our Service that you visit, the time and date of your visit, the time spent on those pages and other statistics.\r\n<h2>Cookies</h2>\r\nCookies are files with small amount of data, which may include an anonymous unique identifier. Cookies are sent to your browser from a web site and stored on your computer\'s hard drive.\r\n\r\nWe use \"cookies\" to collect information. You can instruct your browser to refuse all cookies or to indicate when a cookie is being sent. However, if you do not accept cookies, you may not be able to use some portions of our Service.\r\n<h2>Service Providers</h2>\r\nWe may employ third party companies and individuals to facilitate our Service, to provide the Service on our behalf, to perform Service-related services or to assist us in analyzing how our Service is used.\r\n\r\nThese third parties have access to your Personal Information only to perform these tasks on our behalf and are obligated not to disclose or use it for any other purpose.\r\n<h2>Security</h2>\r\nThe security of your Personal Information is important to us, but remember that no method of transmission over the Internet, or method of electronic storage is 100% secure. While we strive to use commercially acceptable means to protect your Personal Information, we cannot guarantee its absolute security.\r\n<h2>Links To Other Sites</h2>\r\nOur Service may contain links to other sites that are not operated by us. If you click on a third party link, you will be directed to that third party\'s site. We strongly advise you to review the Privacy Policy of every site you visit.\r\n\r\nWe have no control over, and assume no responsibility for the content, privacy policies or practices of any third party sites or services.\r\n<h2>Children\'s Privacy</h2>\r\nOur Service does not address anyone under the age of 18 (\"Children\").\r\n\r\nWe do not knowingly collect personally identifiable information from children under 18. If you are a parent or guardian and you are aware that your child has provided us with Personal Information, please contact us. If we discover that a child under 18 has provided us with Personal Information, we will delete such information from our servers immediately.\r\n<h2>Compliance With Laws</h2>\r\nWe will disclose your Personal Information where required to do so by law or subpoena.\r\n<h2>Changes To This Privacy Policy</h2>\r\nWe may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page.\r\n\r\nYou are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.\r\n<h2>Contact Us</h2>\r\nIf you have any questions about this Privacy Policy, please contact us.','Privacy Policy','','inherit','closed','closed','','18-revision-v1','','','2020-10-08 07:53:30','2020-10-08 07:53:30','',18,'http://genomevalley.org/18-revision-v1/',0,'revision','',0),(32,1,'2020-10-08 07:53:42','2020-10-08 07:53:42','Last updated: [wpautoterms last_updated_date]\r\n\r\nPlease read these Terms of Use (\"Terms\", \"Terms of Use\") carefully before using the [wpautoterms site_url] website (the \"Service\") operated by [wpautoterms company_name] (\"us\", \"we\", or \"our\").\r\n\r\nYour access to and use of the Service is conditioned on your acceptance of and compliance with these Terms. These Terms apply to all visitors, users and others who access or use the Service.\r\n\r\nBy accessing or using the Service you agree to be bound by these Terms. If you disagree with any part of the terms then you may not access the Service.\r\n<h2>Intellectual Property</h2>\r\nThe Service and its original content, features and functionality are and will remain the exclusive property of [wpautoterms company_name] and its licensors.\r\n<h2>Links To Other Web Sites</h2>\r\nOur Service may contain links to third-party web sites or services that are not owned or controlled by [wpautoterms company_name].\r\n\r\n[wpautoterms company_name] has no control over, and assumes no responsibility for, the content, privacy policies, or practices of any third party web sites or services. You further acknowledge and agree that [wpautoterms company_name] shall not be responsible or liable, directly or indirectly, for any damage or loss caused or alleged to be caused by or in connection with use of or reliance on any such content, goods or services available on or through any such web sites or services.\r\n\r\nWe strongly advise you to read the terms and conditions and privacy policies of any third-party web sites or services that you visit.\r\n<h2>Termination</h2>\r\nWe may terminate or suspend access to our Service immediately, without prior notice or liability, for any reason whatsoever, including without limitation if you breach the Terms.\r\n\r\nAll provisions of the Terms which by their nature should survive termination shall survive termination, including, without limitation, ownership provisions, warranty disclaimers, indemnity and limitations of liability.\r\n<h2>Disclaimer</h2>\r\nYour use of the Service is at your sole risk. The Service is provided on an \"AS IS\" and \"AS AVAILABLE\" basis. The Service is provided without warranties of any kind, whether express or implied, including, but not limited to, implied warranties of merchantability, fitness for a particular purpose, non-infringement or course of performance.\r\n<h2>Governing Law</h2>\r\nThese Terms shall be governed and construed in accordance with the laws of United States without regard to its conflict of law provisions.\r\n\r\nOur failure to enforce any right or provision of these Terms will not be considered a waiver of those rights. If any provision of these Terms is held to be invalid or unenforceable by a court, the remaining provisions of these Terms will remain in effect. These Terms constitute the entire agreement between us regarding our Service, and supersede and replace any prior agreements we might have between us regarding the Service.\r\n<h2>Changes</h2>\r\nWe reserve the right, at our sole discretion, to modify or replace these Terms at any time. If a revision is material we will try to provide at least 30 days notice prior to any new terms taking effect. What constitutes a material change will be determined at our sole discretion.\r\n\r\nBy continuing to access or use our Service after those revisions become effective, you agree to be bound by the revised terms. If you do not agree to the new terms, please stop using the Service.\r\n<h2>Contact Us</h2>\r\nIf you have any questions about these Terms, please contact us.','Terms and Conditions','','inherit','closed','closed','','19-revision-v1','','','2020-10-08 07:53:42','2020-10-08 07:53:42','',19,'http://genomevalley.org/19-revision-v1/',0,'revision','',0),(33,1,'2020-10-08 07:54:59','2020-10-08 07:54:59','','Home','','publish','closed','closed','','home','','','2020-10-08 07:54:59','2020-10-08 07:54:59','',0,'http://genomevalley.org/?p=33',1,'nav_menu_item','',0),(34,1,'2020-10-08 07:55:00','2020-10-08 07:55:00',' ','','','publish','closed','closed','','34','','','2020-10-08 07:55:00','2020-10-08 07:55:00','',0,'http://genomevalley.org/?p=34',2,'nav_menu_item','',0),(35,1,'2020-10-08 07:55:00','2020-10-08 07:55:00',' ','','','publish','closed','closed','','35','','','2020-10-08 07:55:00','2020-10-08 07:55:00','',0,'http://genomevalley.org/?p=35',3,'nav_menu_item','',0),(36,1,'2020-10-08 07:54:47','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2020-10-08 07:54:47','0000-00-00 00:00:00','',0,'http://genomevalley.org/?p=36',1,'nav_menu_item','',0),(37,1,'2020-10-08 07:55:00','2020-10-08 07:55:00',' ','','','publish','closed','closed','','37','','','2020-10-08 07:55:00','2020-10-08 07:55:00','',0,'http://genomevalley.org/?p=37',4,'nav_menu_item','',0),(38,1,'2020-10-08 07:55:00','2020-10-08 07:55:00',' ','','','publish','closed','closed','','38','','','2020-10-08 07:55:00','2020-10-08 07:55:00','',0,'http://genomevalley.org/?p=38',5,'nav_menu_item','',0),(39,1,'2020-10-08 07:56:02','2020-10-08 07:56:02','','Facebook','','publish','closed','closed','','facebook','','','2020-10-08 07:57:48','2020-10-08 07:57:48','',0,'http://genomevalley.org/?p=39',1,'nav_menu_item','',0),(40,1,'2020-10-08 07:57:48','2020-10-08 07:57:48','','Twitter','','publish','closed','closed','','twitter','','','2020-10-08 07:57:48','2020-10-08 07:57:48','',0,'http://genomevalley.org/?p=40',2,'nav_menu_item','',0),(41,1,'2020-10-08 07:57:48','2020-10-08 07:57:48','','LinkedIn','','publish','closed','closed','','linkedin','','','2020-10-08 07:57:48','2020-10-08 07:57:48','',0,'http://genomevalley.org/?p=41',3,'nav_menu_item','',0),(42,1,'2020-10-08 07:57:48','2020-10-08 07:57:48','','Pinterest','','publish','closed','closed','','pinterest','','','2020-10-08 07:57:48','2020-10-08 07:57:48','',0,'http://genomevalley.org/?p=42',4,'nav_menu_item','',0),(43,1,'2020-10-08 07:59:12','2020-10-08 07:59:12','','1703 Heather Sees Way,Copan','','publish','closed','closed','','1703-heather-sees-waycopan','','','2020-10-08 08:00:32','2020-10-08 08:00:32','',0,'http://genomevalley.org/?p=43',1,'nav_menu_item','',0),(44,1,'2020-10-08 08:00:32','2020-10-08 08:00:32','','Phone: 918-719-6817','','publish','closed','closed','','phone-918-719-6817','','','2020-10-08 08:00:32','2020-10-08 08:00:32','',0,'http://genomevalley.org/?p=44',2,'nav_menu_item','',0),(45,1,'2020-10-08 08:00:32','2020-10-08 08:00:32','','Email: [email protected]','','publish','closed','closed','','email-admingenomevalley-org','','','2020-10-08 08:00:32','2020-10-08 08:00:32','',0,'http://genomevalley.org/?p=45',3,'nav_menu_item','',0),(46,1,'2020-10-08 08:03:48','2020-10-08 08:03:48','','897','','inherit','closed','closed','','897','','','2020-10-08 08:03:48','2020-10-08 08:03:48','',0,'http://genomevalley.org/wp-content/uploads/2020/10/897.jpg',0,'attachment','image/jpeg',0),(47,1,'2020-10-08 08:04:47','2020-10-08 08:04:47','','898','','inherit','closed','closed','','898','','','2020-10-08 08:04:47','2020-10-08 08:04:47','',0,'http://genomevalley.org/wp-content/uploads/2020/10/898.png',0,'attachment','image/png',0),(49,1,'2020-10-08 08:13:10','2020-10-08 08:13:10','#main .row .col-xxl-4.col-xl-6.col-sm-6 {\n	min-width: 100% !important;\n}\n\n.col-xxl-4.col-xl-6.col-sm-6 article{\n	min-width: 100% !important;\n	flex: 100% !important;\n	width: 100% !important;\n}\n\n.entry-content p{\n	text-align: justify;\n	font-size: 16px;\n}\n\n.nf-form-title h3{\n	display: none;\n}\n\n.nf-form-fields-required{\n	display: none;\n}\n\n#nf-form-2-cont label{\n	color: #fff !important;\n}\n\ninput[type=button]{\n	font-size: 16px !important;\n	font-weight: 700;\n	border-radius: 5px;\n	transition: .5s ease-in-out;\n}\n\n#nf-form-2-cont input[type=button]:hover{\n	background: #fff !important;\n	color: #000 !important;\n}\n\n.site-info{\n	padding: 0 !important;\n}\n\np.cp_right {\n    padding: 10px 0;\n    color: rgb(255 255 255);\n}\n\n.pe-recent-posts-title-tag a{\n	font-size: 16px;\n	color: #000 !important;\n}\n\np.site-description {\n    display: none;\n}\n\n.site-title{\n	margin-top: 15px !important;\n}\n\n.site-title a{\n	text-transform: uppercase;\n	font-weight: 800 !important;\n}\n\n.entry-title a{\n	font-size: 22px !important;\n}','refresh-blog','','publish','closed','closed','','refresh-blog','','','2020-10-08 09:16:00','2020-10-08 09:16:00','',0,'http://genomevalley.org/refresh-blog/',0,'custom_css','',0),(62,1,'2020-10-08 09:08:32','2020-10-08 09:08:32','#main .row .col-xxl-4.col-xl-6.col-sm-6 {\n	min-width: 100% !important;\n}\n\n.col-xxl-4.col-xl-6.col-sm-6 article{\n	min-width: 100% !important;\n	flex: 100% !important;\n	width: 100% !important;\n}\n\n.entry-content p{\n	text-align: justify;\n	font-size: 16px;\n}\n\n.nf-form-title h3{\n	display: none;\n}\n\n.nf-form-fields-required{\n	display: none;\n}\n\n#nf-form-2-cont label{\n	color: #fff !important;\n}\n\ninput[type=button]{\n	font-size: 16px !important;\n	font-weight: 700;\n	border-radius: 5px;\n	transition: .5s ease-in-out;\n}\n\n#nf-form-2-cont input[type=button]:hover{\n	background: #fff !important;\n	color: #000 !important;\n}\n\n.site-info{\n	padding: 0 !important;\n}\n\np.cp_right {\n    padding: 10px 0;\n    color: rgb(255 255 255);\n}\n\n.pe-recent-posts-title-tag a{\n	font-size: 16px;\n	color: #000 !important;\n}','refresh-blog','','inherit','closed','closed','','49-revision-v1','','','2020-10-08 09:08:32','2020-10-08 09:08:32','',49,'http://genomevalley.org/49-revision-v1/',0,'revision','',0),(64,1,'2020-10-08 09:11:12','2020-10-08 09:11:12','','favicon57','','inherit','closed','closed','','favicon57','','','2020-10-08 09:11:12','2020-10-08 09:11:12','',0,'http://genomevalley.org/wp-content/uploads/2020/10/favicon57.png',0,'attachment','image/png',0),(67,1,'2020-10-08 09:11:47','2020-10-08 09:11:47','#main .row .col-xxl-4.col-xl-6.col-sm-6 {\n	min-width: 100% !important;\n}\n\n.col-xxl-4.col-xl-6.col-sm-6 article{\n	min-width: 100% !important;\n	flex: 100% !important;\n	width: 100% !important;\n}\n\n.entry-content p{\n	text-align: justify;\n	font-size: 16px;\n}\n\n.nf-form-title h3{\n	display: none;\n}\n\n.nf-form-fields-required{\n	display: none;\n}\n\n#nf-form-2-cont label{\n	color: #fff !important;\n}\n\ninput[type=button]{\n	font-size: 16px !important;\n	font-weight: 700;\n	border-radius: 5px;\n	transition: .5s ease-in-out;\n}\n\n#nf-form-2-cont input[type=button]:hover{\n	background: #fff !important;\n	color: #000 !important;\n}\n\n.site-info{\n	padding: 0 !important;\n}\n\np.cp_right {\n    padding: 10px 0;\n    color: rgb(255 255 255);\n}\n\n.pe-recent-posts-title-tag a{\n	font-size: 16px;\n	color: #000 !important;\n}\n\np.site-description {\n    display: none;\n}','refresh-blog','','inherit','closed','closed','','49-revision-v1','','','2020-10-08 09:11:47','2020-10-08 09:11:47','',49,'http://genomevalley.org/49-revision-v1/',0,'revision','',0),(69,1,'2020-10-08 09:12:36','2020-10-08 09:12:36','#main .row .col-xxl-4.col-xl-6.col-sm-6 {\n	min-width: 100% !important;\n}\n\n.col-xxl-4.col-xl-6.col-sm-6 article{\n	min-width: 100% !important;\n	flex: 100% !important;\n	width: 100% !important;\n}\n\n.entry-content p{\n	text-align: justify;\n	font-size: 16px;\n}\n\n.nf-form-title h3{\n	display: none;\n}\n\n.nf-form-fields-required{\n	display: none;\n}\n\n#nf-form-2-cont label{\n	color: #fff !important;\n}\n\ninput[type=button]{\n	font-size: 16px !important;\n	font-weight: 700;\n	border-radius: 5px;\n	transition: .5s ease-in-out;\n}\n\n#nf-form-2-cont input[type=button]:hover{\n	background: #fff !important;\n	color: #000 !important;\n}\n\n.site-info{\n	padding: 0 !important;\n}\n\np.cp_right {\n    padding: 10px 0;\n    color: rgb(255 255 255);\n}\n\n.pe-recent-posts-title-tag a{\n	font-size: 16px;\n	color: #000 !important;\n}\n\np.site-description {\n    display: none;\n}\n\n.site-title a{\n	text-transform: uppercase;\n	font-weight: 800;\n}','refresh-blog','','inherit','closed','closed','','49-revision-v1','','','2020-10-08 09:12:36','2020-10-08 09:12:36','',49,'http://genomevalley.org/49-revision-v1/',0,'revision','',0),(71,1,'2020-10-08 09:14:20','2020-10-08 09:14:20','#main .row .col-xxl-4.col-xl-6.col-sm-6 {\n	min-width: 100% !important;\n}\n\n.col-xxl-4.col-xl-6.col-sm-6 article{\n	min-width: 100% !important;\n	flex: 100% !important;\n	width: 100% !important;\n}\n\n.entry-content p{\n	text-align: justify;\n	font-size: 16px;\n}\n\n.nf-form-title h3{\n	display: none;\n}\n\n.nf-form-fields-required{\n	display: none;\n}\n\n#nf-form-2-cont label{\n	color: #fff !important;\n}\n\ninput[type=button]{\n	font-size: 16px !important;\n	font-weight: 700;\n	border-radius: 5px;\n	transition: .5s ease-in-out;\n}\n\n#nf-form-2-cont input[type=button]:hover{\n	background: #fff !important;\n	color: #000 !important;\n}\n\n.site-info{\n	padding: 0 !important;\n}\n\np.cp_right {\n    padding: 10px 0;\n    color: rgb(255 255 255);\n}\n\n.pe-recent-posts-title-tag a{\n	font-size: 16px;\n	color: #000 !important;\n}\n\np.site-description {\n    display: none;\n}\n\n.site-title{\n	margin-top: 15px !important;\n}\n\n.site-title a{\n	text-transform: uppercase;\n	font-weight: 800 !important;\n}','refresh-blog','','inherit','closed','closed','','49-revision-v1','','','2020-10-08 09:14:20','2020-10-08 09:14:20','',49,'http://genomevalley.org/49-revision-v1/',0,'revision','',0),(73,1,'2020-10-08 09:16:00','2020-10-08 09:16:00','#main .row .col-xxl-4.col-xl-6.col-sm-6 {\n	min-width: 100% !important;\n}\n\n.col-xxl-4.col-xl-6.col-sm-6 article{\n	min-width: 100% !important;\n	flex: 100% !important;\n	width: 100% !important;\n}\n\n.entry-content p{\n	text-align: justify;\n	font-size: 16px;\n}\n\n.nf-form-title h3{\n	display: none;\n}\n\n.nf-form-fields-required{\n	display: none;\n}\n\n#nf-form-2-cont label{\n	color: #fff !important;\n}\n\ninput[type=button]{\n	font-size: 16px !important;\n	font-weight: 700;\n	border-radius: 5px;\n	transition: .5s ease-in-out;\n}\n\n#nf-form-2-cont input[type=button]:hover{\n	background: #fff !important;\n	color: #000 !important;\n}\n\n.site-info{\n	padding: 0 !important;\n}\n\np.cp_right {\n    padding: 10px 0;\n    color: rgb(255 255 255);\n}\n\n.pe-recent-posts-title-tag a{\n	font-size: 16px;\n	color: #000 !important;\n}\n\np.site-description {\n    display: none;\n}\n\n.site-title{\n	margin-top: 15px !important;\n}\n\n.site-title a{\n	text-transform: uppercase;\n	font-weight: 800 !important;\n}\n\n.entry-title a{\n	font-size: 22px !important;\n}','refresh-blog','','inherit','closed','closed','','49-revision-v1','','','2020-10-08 09:16:00','2020-10-08 09:16:00','',49,'http://genomevalley.org/49-revision-v1/',0,'revision','',0),(74,1,'2020-10-08 09:18:18','2020-10-08 09:18:18','','899','','inherit','closed','closed','','899','','','2020-10-08 09:18:18','2020-10-08 09:18:18','',0,'http://genomevalley.org/wp-content/uploads/2020/10/899.jpg',0,'attachment','image/jpeg',0),(75,1,'2020-10-08 09:19:10','2020-10-08 09:19:10','','cropped-899.jpg','','inherit','closed','closed','','cropped-899-jpg','','','2020-10-08 09:19:10','2020-10-08 09:19:10','',0,'http://genomevalley.org/wp-content/uploads/2020/10/cropped-899.jpg',0,'attachment','image/jpeg',0),(77,0,'2021-01-20 08:10:36','2021-01-20 08:10:36','','','','publish','closed','closed','','77','','','2021-01-20 08:10:36','2021-01-20 08:10:36','',0,'http://genomevalley.org/nf_sub/77/',0,'nf_sub','',0),(78,0,'2021-04-08 05:53:06','2021-04-08 05:53:06','','','','publish','closed','closed','','78','','','2021-04-08 05:53:06','2021-04-08 05:53:06','',0,'http://genomevalley.org/nf_sub/78/',0,'nf_sub','',0),(81,0,'2021-06-14 07:21:46','2021-06-14 07:21:46','','','','publish','closed','closed','','81','','','2021-06-14 07:21:46','2021-06-14 07:21:46','',0,'http://genomevalley.org/nf_sub/81/',0,'nf_sub','',0),(83,1,'2021-07-06 07:11:38','2021-07-06 07:11:38','The IP is the central element in the world of the web. This series of numbers identifies your computer that uses the Internet Protocol to communicate.\r\n<h2>Your IP address is the name of your computer.</h2>\r\nYour IP address is visible: Our IP is immediately visible whenever we log in, surf, shop on a merchant site, or download. However, we don\'t need to share our real IP address with everyone. That\'s why the use of a VPN is essential!\r\n<ul>\r\n 	<li>For 97% of Internet users this IP is static and offered by a F.A.I with the Internet subscription. To check your IP F.A.I and the one obtained by your VPN we advise you IPLEAK which has the best database for the display of IP and <a href=\"https://www.globalwatchonline.com/da/vpn/reviews/surfshark/\">Surfshark trial @ Globalwatchonline.dk</a></li>\r\n</ul>\r\n<h2>VPNs offer two functions:</h2>\r\n<ul>\r\n 	<li>Check your connection through an OpenVPN-like protocol. The OpenVPN protocol is currently the most used and secure protocol.</li>\r\n 	<li><strong>Change your IP address</strong>. When you hide your IP address, you protect your identity on the Internet.</li>\r\n</ul>\r\nThis change of IP addresses is very much learned by VPN users who mostly take advantage of it:\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Hide their F.A.I IP by the VPN server\'s.</li>\r\n 	<li>Protest a P2P exchange with neutral IPs of <a href=\"https://www.globalwatchonline.com/ja/vpn/guide/vpn-%e5%ae%89%e3%81%84/\">2021年の10の最も安いVPN</a></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li>Bypassing the gaggraphic barriers like Netflix – BBC iPlayer – Amazon prime – RTS</li>\r\n</ul>\r\nhttps://www.youtube.com/watch?v=ez86zn5zxkE\r\n<h2>VPNs offer different types of IP addresses</h2>\r\nAll these IPs are technically different. For example, VPNs offer dynamic and shared IPs. Other IPs (Public – Résidentielles – Dédieacute;es – Public – Streaming IPs (e.g. Virtual IPs) exist and are different from the first ones. All these IPs have specific functions.\r\n<ul>\r\n 	<li>A very good VPN is not one that is able to offer all these types of IPs but one that is able:</li>\r\n 	<li>To perfectly control its management of the IP that it offers (Advance stock + Multiplying the origins – Renewal in case of blacklist).</li>\r\n 	<li>Have IPs in the main countries requested: Holland (P2P) – UK (British TV) – Romania (Anonymization) – US (Netflix) – Switzerland (RTS) – Canada (Netflix) – France (WIFI Sécurization)</li>\r\n</ul>\r\n<h3>IP Dynamic and Shared</h3>\r\nA dynamic and shared IP is an IP assigned by a VPN server. Each connection to a new server = a new IP. This same IP is used by several people at the same time.\r\n<ol>\r\n 	<li>These IPs are used by several people at the same time.</li>\r\n 	<li>These IPs are the ones we get most of the time. The reason is quite simple: this IP covers 90% of VPN users\' usage and it’s the cheapest. With a shared dynamic IP you can:</li>\r\n 	<li>Make P2P Torrent other TéléDirect upload. These IPs are perfect for these protective uses. They will hide the monitoring of your F.A.I IP on the Torrent network.The IP switch will also allow you to chain Téléuploads on the same file browser.</li>\r\n</ol>','IP addresses are essential for the identification of a computer medium connected to the Internet, how does a VPN work with these IP\'s?','','publish','closed','closed','','ip-addresses-are-essential-for-the-identification-of-a-computer-medium-connected-to-the-internet-how-does-a-vpn-work-with-these-ips','','','2021-06-17 20:49:27','2021-06-17 20:49:27','',0,'http://genomevalley.org/?p=83',0,'post','',0),(84,1,'2021-06-17 19:51:49','2021-06-17 19:51:49','The IP is the central element in the world of the web. This series of numbers identifies your computer that uses the Internet Protocol to communicate.\r\n<h2>Your IP address is the name of your computer.</h2>\r\nYour IP address is visible: Our IP is immediately visible whenever we log in, surf, shop on a merchant site, or download. However, we don\'t need to share our real IP address with everyone. That\'s why the use of a VPN is essential!\r\n<ul>\r\n 	<li>For 97% of Internet users this IP is static and offered by a F.A.I with the Internet subscription. To check your IP F.A.I and the one obtained by your VPN we advise you IPLEAK which has the best database for the display of IPs.</li>\r\n</ul>\r\n<h2>VPNs offer two functions:</h2>\r\n<ul>\r\n 	<li>Check your connection through an OpenVPN-like protocol. The OpenVPN protocol is currently the most used and secure protocol.</li>\r\n 	<li><strong>Change your IP address</strong>. When you hide your IP address, you protect your identity on the Internet.</li>\r\n</ul>\r\nThis change of IP addresses is very much learned by VPN users who mostly take advantage of it:\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Hide their F.A.I IP by the VPN server\'s.</li>\r\n 	<li>Protest a P2P exchange with neutral IPs</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li>Bypassing the gaggraphic barriers like Netflix – BBC iPlayer – Amazon prime – RTS</li>\r\n</ul>\r\n<h2>VPNs offer different types of IP addresses</h2>\r\nAll these IPs are technically different. For example, VPNs offer dynamic and shared IPs. Other IPs (Public – Résidentielles – Dédieacute;es – Public – Streaming IPs (e.g. Virtual IPs) exist and are different from the first ones. All these IPs have specific functions.\r\n<ul>\r\n 	<li>A very good VPN is not one that is able to offer all these types of IPs but one that is able:</li>\r\n 	<li>To perfectly control its management of the IP that it offers (Advance stock + Multiplying the origins – Renewal in case of blacklist).</li>\r\n 	<li>Have IPs in the main countries requested: Holland (P2P) – UK (British TV) – Romania (Anonymization) – US (Netflix) – Switzerland (RTS) – Canada (Netflix) – France (WIFI Sécurization)</li>\r\n</ul>\r\n<h3>IP Dynamic and Shared</h3>\r\nA dynamic and shared IP is an IP assigned by a VPN server. Each connection to a new server = a new IP. This same IP is used by several people at the same time.\r\n<ol>\r\n 	<li>These IPs are used by several people at the same time.</li>\r\n 	<li>These IPs are the ones we get most of the time. The reason is quite simple: this IP covers 90% of VPN users\' usage and it’s the cheapest. With a shared dynamic IP you can:</li>\r\n 	<li>Make P2P Torrent other TéléDirect upload. These IPs are perfect for these protective uses. They will hide the monitoring of your F.A.I IP on the Torrent network.The IP switch will also allow you to chain Téléuploads on the same file browser.</li>\r\n</ol>','IP addresses are essential for the identification of a computer medium connected to the Internet, how does a VPN work with these IP\'s?','','inherit','closed','closed','','83-revision-v1','','','2021-06-17 19:51:49','2021-06-17 19:51:49','',83,'http://genomevalley.org/?p=84',0,'revision','',0),(85,1,'2021-06-17 20:09:57','2021-06-17 20:09:57','The IP is the central element in the world of the web. This series of numbers identifies your computer that uses the Internet Protocol to communicate.\r\n<h2>Your IP address is the name of your computer.</h2>\r\nYour IP address is visible: Our IP is immediately visible whenever we log in, surf, shop on a merchant site, or download. However, we don\'t need to share our real IP address with everyone. That\'s why the use of a VPN is essential!\r\n<ul>\r\n 	<li>For 97% of Internet users this IP is static and offered by a F.A.I with the Internet subscription. To check your IP F.A.I and the one obtained by your VPN we advise you IPLEAK which has the best database for the display of IPs.</li>\r\n</ul>\r\n<h2>VPNs offer two functions:</h2>\r\n<ul>\r\n 	<li>Check your connection through an OpenVPN-like protocol. The OpenVPN protocol is currently the most used and secure protocol.</li>\r\n 	<li><strong>Change your IP address</strong>. When you hide your IP address, you protect your identity on the Internet.</li>\r\n</ul>\r\nThis change of IP addresses is very much learned by VPN users who mostly take advantage of it:\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Hide their F.A.I IP by the VPN server\'s.</li>\r\n 	<li>Protest a P2P exchange with neutral IPs</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li>Bypassing the gaggraphic barriers like Netflix – BBC iPlayer – Amazon prime – RTS</li>\r\n</ul>\r\nhttps://www.youtube.com/watch?v=ez86zn5zxkE\r\n<h2>VPNs offer different types of IP addresses</h2>\r\nAll these IPs are technically different. For example, VPNs offer dynamic and shared IPs. Other IPs (Public – Résidentielles – Dédieacute;es – Public – Streaming IPs (e.g. Virtual IPs) exist and are different from the first ones. All these IPs have specific functions.\r\n<ul>\r\n 	<li>A very good VPN is not one that is able to offer all these types of IPs but one that is able:</li>\r\n 	<li>To perfectly control its management of the IP that it offers (Advance stock + Multiplying the origins – Renewal in case of blacklist).</li>\r\n 	<li>Have IPs in the main countries requested: Holland (P2P) – UK (British TV) – Romania (Anonymization) – US (Netflix) – Switzerland (RTS) – Canada (Netflix) – France (WIFI Sécurization)</li>\r\n</ul>\r\n<h3>IP Dynamic and Shared</h3>\r\nA dynamic and shared IP is an IP assigned by a VPN server. Each connection to a new server = a new IP. This same IP is used by several people at the same time.\r\n<ol>\r\n 	<li>These IPs are used by several people at the same time.</li>\r\n 	<li>These IPs are the ones we get most of the time. The reason is quite simple: this IP covers 90% of VPN users\' usage and it’s the cheapest. With a shared dynamic IP you can:</li>\r\n 	<li>Make P2P Torrent other TéléDirect upload. These IPs are perfect for these protective uses. They will hide the monitoring of your F.A.I IP on the Torrent network.The IP switch will also allow you to chain Téléuploads on the same file browser.</li>\r\n</ol>','IP addresses are essential for the identification of a computer medium connected to the Internet, how does a VPN work with these IP\'s?','','inherit','closed','closed','','83-revision-v1','','','2021-06-17 20:09:57','2021-06-17 20:09:57','',83,'http://genomevalley.org/?p=85',0,'revision','',0),(86,1,'2021-06-17 20:15:41','2021-06-17 20:15:41','','214afasf12','','inherit','closed','closed','','214afasf12','','','2021-06-17 20:15:41','2021-06-17 20:15:41','',83,'http://genomevalley.org/wp-content/uploads/2021/07/214afasf12.jpg',0,'attachment','image/jpeg',0),(87,1,'2021-06-17 20:20:12','2021-06-17 20:20:12','','asfsaf1241','','inherit','closed','closed','','asfsaf1241','','','2021-06-17 20:20:12','2021-06-17 20:20:12','',83,'http://genomevalley.org/wp-content/uploads/2021/07/asfsaf1241.jpg',0,'attachment','image/jpeg',0),(88,1,'2021-06-17 20:49:27','2021-06-17 20:49:27','The IP is the central element in the world of the web. This series of numbers identifies your computer that uses the Internet Protocol to communicate.\r\n<h2>Your IP address is the name of your computer.</h2>\r\nYour IP address is visible: Our IP is immediately visible whenever we log in, surf, shop on a merchant site, or download. However, we don\'t need to share our real IP address with everyone. That\'s why the use of a VPN is essential!\r\n<ul>\r\n 	<li>For 97% of Internet users this IP is static and offered by a F.A.I with the Internet subscription. To check your IP F.A.I and the one obtained by your VPN we advise you IPLEAK which has the best database for the display of IP and <a href=\"https://www.globalwatchonline.com/da/vpn/reviews/surfshark/\">Surfshark trial @ Globalwatchonline.dk</a></li>\r\n</ul>\r\n<h2>VPNs offer two functions:</h2>\r\n<ul>\r\n 	<li>Check your connection through an OpenVPN-like protocol. The OpenVPN protocol is currently the most used and secure protocol.</li>\r\n 	<li><strong>Change your IP address</strong>. When you hide your IP address, you protect your identity on the Internet.</li>\r\n</ul>\r\nThis change of IP addresses is very much learned by VPN users who mostly take advantage of it:\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Hide their F.A.I IP by the VPN server\'s.</li>\r\n 	<li>Protest a P2P exchange with neutral IPs of <a href=\"https://www.globalwatchonline.com/ja/vpn/guide/vpn-%e5%ae%89%e3%81%84/\">2021年の10の最も安いVPN</a></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li>Bypassing the gaggraphic barriers like Netflix – BBC iPlayer – Amazon prime – RTS</li>\r\n</ul>\r\nhttps://www.youtube.com/watch?v=ez86zn5zxkE\r\n<h2>VPNs offer different types of IP addresses</h2>\r\nAll these IPs are technically different. For example, VPNs offer dynamic and shared IPs. Other IPs (Public – Résidentielles – Dédieacute;es – Public – Streaming IPs (e.g. Virtual IPs) exist and are different from the first ones. All these IPs have specific functions.\r\n<ul>\r\n 	<li>A very good VPN is not one that is able to offer all these types of IPs but one that is able:</li>\r\n 	<li>To perfectly control its management of the IP that it offers (Advance stock + Multiplying the origins – Renewal in case of blacklist).</li>\r\n 	<li>Have IPs in the main countries requested: Holland (P2P) – UK (British TV) – Romania (Anonymization) – US (Netflix) – Switzerland (RTS) – Canada (Netflix) – France (WIFI Sécurization)</li>\r\n</ul>\r\n<h3>IP Dynamic and Shared</h3>\r\nA dynamic and shared IP is an IP assigned by a VPN server. Each connection to a new server = a new IP. This same IP is used by several people at the same time.\r\n<ol>\r\n 	<li>These IPs are used by several people at the same time.</li>\r\n 	<li>These IPs are the ones we get most of the time. The reason is quite simple: this IP covers 90% of VPN users\' usage and it’s the cheapest. With a shared dynamic IP you can:</li>\r\n 	<li>Make P2P Torrent other TéléDirect upload. These IPs are perfect for these protective uses. They will hide the monitoring of your F.A.I IP on the Torrent network.The IP switch will also allow you to chain Téléuploads on the same file browser.</li>\r\n</ol>','IP addresses are essential for the identification of a computer medium connected to the Internet, how does a VPN work with these IP\'s?','','inherit','closed','closed','','83-revision-v1','','','2021-06-17 20:49:27','2021-06-17 20:49:27','',83,'http://genomevalley.org/?p=88',0,'revision','',0),(89,0,'2021-07-20 04:01:45','2021-07-20 04:01:45','','','','publish','closed','closed','','89','','','2021-07-20 04:01:45','2021-07-20 04:01:45','',0,'http://genomevalley.org/nf_sub/89/',0,'nf_sub','',0),(90,0,'2021-08-26 15:45:21','2021-08-26 15:45:21','','','','publish','closed','closed','','90','','','2021-08-26 15:45:21','2021-08-26 15:45:21','',0,'http://genomevalley.org/nf_sub/90/',0,'nf_sub','',0),(91,0,'2021-09-01 21:15:21','2021-09-01 21:15:21','<iframe title=\"NordVPN | Zeer uitgebreid VPN en goedkoope\" width=\"640\" height=\"480\" src=\"https://www.youtube.com/embed/ez86zn5zxkE?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','06569c3e3a91f78af1b495b481e2d995','','','2021-09-01 21:15:21','2021-09-01 21:15:21','',0,'http://genomevalley.org/06569c3e3a91f78af1b495b481e2d995/',0,'oembed_cache','',0),(93,1,'2021-09-04 09:15:23','2021-09-04 09:15:23','Like every Saturday, today we also look at the crypto price forecast for the price of Bitcoin and the prices of the top 25 crypto coins for the coming week. We do this on the basis of our crypto price forecast from last week, the current prices of crypto and our analyzes for the coming week.\r\n\r\nWe first analyze last week\'s developments based on our crypto price forecast for the previous week that you can read here. Then we look at the current situation. Based on this data, we make the analyzes for the coming week. We do this first for the Bitcoin price and then for the other crypto prices of the top 25 crypto coins.\r\n<h2>Bitcoin price in the past week</h2>\r\nWe predicted last week that the price of Bitcoin would fall this week. There is nothing too much to say about that because the price of Bitcoin fell by 20.96%. This was mainly due to fundamental factors, with Elon Musk\'s Twitter thumb playing a major role. Later in the week, new rumors about a crypto ban in China came over. After a brief rebound on Thursday, prices have fallen sharply since last night. <a href=\"https://cryptofriends.io/eos-price\">EOS price</a> is high.\r\n\r\nhttps://youtu.be/Nt67sDFQlhs\r\n<h2>The current price of Bitcoin</h2>\r\nAt the moment, the Bitcoin price is still falling. At the time of writing, Bitcoin\'s price is EUR 30,530 ($37,209.99), which is 8.82% lower than yesterday afternoon. Still, there is a little light at the end of the correction tunnel. Since the price touched the $ 36,000, we see that investors are stepping back in and thinking to buy the dip. With this information in mind, we look ahead to the week ahead. Can we expect a recovery in the Bitcoin price or will the correction continue? Of course you can follow the Bitcoin price in real time on the Tradeincrypto.com site 24 hours a day.\r\n\r\nThe crypto price forecast for the Bitcoin price in the coming week (week 21)\r\n\r\nOf course we base our crypto price forecast for the Bitcoin price on the technical and fundamental analysis.\r\n<h2>Fundamental Factors for Bitcoin in Week 21</h2>\r\nThere are no macroeconomic events noted on the economic calendar that are likely to impact Bitcoin. On the crypto calendar we see that the crypto exchange Consensus will be held from May 24 to 27. There are many points about the future of Bitcoin. The news of this stock exchange can therefore certainly affect investor confidence. <a href=\"https://cryptofriends.io/\">Cryptofriends.io</a> is fine.\r\n\r\nFurthermore, next Friday is the last Friday of the month. This means that the CME monthly options expire. Although the release of these options often has no direct price impact, analysts certainly see it as a measure of sentiment and therefore as a direction for the Bitcoin price in the coming month.\r\n<h2>Technical Factors for Bitcoin in Week 21</h2>\r\nThe technical trend analyzes give a strong sell signal for the coming week. The oscillators are giving a neutral signal, but that doesn\'t seem to be enough to offset the trend signals.\r\n\r\nThe RSI is currently 51.58 and has been rising in recent days. This seems to indicate a good price (about exactly between \'overbought\' and \'oversold\'). Finally, we see that the support levels currently leave a lot of room. The lowest support level is $29,407, which is in line with the earlier Fibonacci analyzes .\r\n\r\nThe only positive point, besides the entry of investors expecting to buy the dip, is that the Greed-and-Fear Index is showing strong Fear at 12 and that is normally an indication of buyer interest.\r\n<h2>Our price forecast for the Bitcoin price in the coming week (week 21)</h2>\r\nHowever, we expect that this time will not be enough. Unless the fundamentals bring positive surprises, we therefore expect a negative week for Bitcoin in the coming week.\r\n\r\nAfter Bitcoin, of course, we also analyze the other crypto coins from the top 25.\r\n<h2>The price of the top 25 crypto coins in week 19 and current state of affairs</h2>\r\nAs it was a negative week for Bitcoin, the prices of the top 25 crypto coins also turned blood red. With the exception of the stable coins, we only see weekly losses in the top 25 crypto coins.\r\n\r\nThese weekly losses were not tender. For example, Ethereum (ETH) lost 34.37% in the past week and the Dogecoin (DOGE) shot down 33.01%. However, the biggest loss was for Eos (EOS), which lost 47.52%.\r\n\r\nThe current prices for the top 25 crypto coins are also not cheerful. Right now, all cryptocurrencies (except stable coins) are losing heavily by double digits. Polygon (MATIC) is currently in the corner where the most blows fall and yields no less than 24.75% in 24 hours. On the site of Tradeincrypto.com you can also follow the live prices of the top 25 crypto coins 24 hours a day.\r\n\r\nWe also include technical and fundamental factors for the top 25 cryptocurrencies. The technical trend analyzes for the main cryptocurrencies, with the exception of the stable coins, only show negative advice (sell signals or strong sell signals). The oscillators are not much more hopeful, especially with sell and neutral signals.\r\n\r\nIn terms of fundamental factors, news from Consensus can of course also influence the prices of cryptocurrencies. In addition, we see the launch of the Alonzo testnet planned for Cardano (ADA) in the coming weekend.\r\n\r\nWe therefore foresee another negative week for the top 25 cryptocurrencies if the fundamental factors do not bring any positive surprises.','BECAUSE Bitcoin and Crypto price forecast week 21: our analyses','','publish','closed','closed','','because-bitcoin-and-crypto-price-forecast-week-21-our-analyses','','','2021-09-20 12:57:46','2021-09-20 12:57:46','',0,'http://genomevalley.org/?p=93',0,'post','',0),(94,1,'2021-09-20 12:57:31','2021-09-20 12:57:31','','pexels-pixabay-315788','','inherit','closed','closed','','pexels-pixabay-315788','','','2021-09-20 12:57:31','2021-09-20 12:57:31','',93,'http://genomevalley.org/wp-content/uploads/2021/09/pexels-pixabay-315788.jpg',0,'attachment','image/jpeg',0),(95,1,'2021-09-20 12:57:46','2021-09-20 12:57:46','Like every Saturday, today we also look at the crypto price forecast for the price of Bitcoin and the prices of the top 25 crypto coins for the coming week. We do this on the basis of our crypto price forecast from last week, the current prices of crypto and our analyzes for the coming week.\r\n\r\nWe first analyze last week\'s developments based on our crypto price forecast for the previous week that you can read here. Then we look at the current situation. Based on this data, we make the analyzes for the coming week. We do this first for the Bitcoin price and then for the other crypto prices of the top 25 crypto coins.\r\n<h2>Bitcoin price in the past week</h2>\r\nWe predicted last week that the price of Bitcoin would fall this week. There is nothing too much to say about that because the price of Bitcoin fell by 20.96%. This was mainly due to fundamental factors, with Elon Musk\'s Twitter thumb playing a major role. Later in the week, new rumors about a crypto ban in China came over. After a brief rebound on Thursday, prices have fallen sharply since last night. <a href=\"https://cryptofriends.io/eos-price\">EOS price</a> is high.\r\n\r\nhttps://youtu.be/Nt67sDFQlhs\r\n<h2>The current price of Bitcoin</h2>\r\nAt the moment, the Bitcoin price is still falling. At the time of writing, Bitcoin\'s price is EUR 30,530 ($37,209.99), which is 8.82% lower than yesterday afternoon. Still, there is a little light at the end of the correction tunnel. Since the price touched the $ 36,000, we see that investors are stepping back in and thinking to buy the dip. With this information in mind, we look ahead to the week ahead. Can we expect a recovery in the Bitcoin price or will the correction continue? Of course you can follow the Bitcoin price in real time on the Tradeincrypto.com site 24 hours a day.\r\n\r\nThe crypto price forecast for the Bitcoin price in the coming week (week 21)\r\n\r\nOf course we base our crypto price forecast for the Bitcoin price on the technical and fundamental analysis.\r\n<h2>Fundamental Factors for Bitcoin in Week 21</h2>\r\nThere are no macroeconomic events noted on the economic calendar that are likely to impact Bitcoin. On the crypto calendar we see that the crypto exchange Consensus will be held from May 24 to 27. There are many points about the future of Bitcoin. The news of this stock exchange can therefore certainly affect investor confidence. <a href=\"https://cryptofriends.io/\">Cryptofriends.io</a> is fine.\r\n\r\nFurthermore, next Friday is the last Friday of the month. This means that the CME monthly options expire. Although the release of these options often has no direct price impact, analysts certainly see it as a measure of sentiment and therefore as a direction for the Bitcoin price in the coming month.\r\n<h2>Technical Factors for Bitcoin in Week 21</h2>\r\nThe technical trend analyzes give a strong sell signal for the coming week. The oscillators are giving a neutral signal, but that doesn\'t seem to be enough to offset the trend signals.\r\n\r\nThe RSI is currently 51.58 and has been rising in recent days. This seems to indicate a good price (about exactly between \'overbought\' and \'oversold\'). Finally, we see that the support levels currently leave a lot of room. The lowest support level is $29,407, which is in line with the earlier Fibonacci analyzes .\r\n\r\nThe only positive point, besides the entry of investors expecting to buy the dip, is that the Greed-and-Fear Index is showing strong Fear at 12 and that is normally an indication of buyer interest.\r\n<h2>Our price forecast for the Bitcoin price in the coming week (week 21)</h2>\r\nHowever, we expect that this time will not be enough. Unless the fundamentals bring positive surprises, we therefore expect a negative week for Bitcoin in the coming week.\r\n\r\nAfter Bitcoin, of course, we also analyze the other crypto coins from the top 25.\r\n<h2>The price of the top 25 crypto coins in week 19 and current state of affairs</h2>\r\nAs it was a negative week for Bitcoin, the prices of the top 25 crypto coins also turned blood red. With the exception of the stable coins, we only see weekly losses in the top 25 crypto coins.\r\n\r\nThese weekly losses were not tender. For example, Ethereum (ETH) lost 34.37% in the past week and the Dogecoin (DOGE) shot down 33.01%. However, the biggest loss was for Eos (EOS), which lost 47.52%.\r\n\r\nThe current prices for the top 25 crypto coins are also not cheerful. Right now, all cryptocurrencies (except stable coins) are losing heavily by double digits. Polygon (MATIC) is currently in the corner where the most blows fall and yields no less than 24.75% in 24 hours. On the site of Tradeincrypto.com you can also follow the live prices of the top 25 crypto coins 24 hours a day.\r\n\r\nWe also include technical and fundamental factors for the top 25 cryptocurrencies. The technical trend analyzes for the main cryptocurrencies, with the exception of the stable coins, only show negative advice (sell signals or strong sell signals). The oscillators are not much more hopeful, especially with sell and neutral signals.\r\n\r\nIn terms of fundamental factors, news from Consensus can of course also influence the prices of cryptocurrencies. In addition, we see the launch of the Alonzo testnet planned for Cardano (ADA) in the coming weekend.\r\n\r\nWe therefore foresee another negative week for the top 25 cryptocurrencies if the fundamental factors do not bring any positive surprises.','BECAUSE Bitcoin and Crypto price forecast week 21: our analyses','','inherit','closed','closed','','93-revision-v1','','','2021-09-20 12:57:46','2021-09-20 12:57:46','',93,'http://genomevalley.org/?p=95',0,'revision','',0),(96,1,'2021-08-26 13:34:27','2021-08-26 13:34:27','Another new coin has been added to the crypto app BLOX. The Dutch app adds Polkadot to the offer. The currency has only been around since August 2020 and can therefore still go in all directions.\r\n<h2>Polkadot an instant success</h2>\r\nThe Polkadot currency is abbreviated to DOT, and has only been freely tradable since August. The coin was immediately denominated, which means that the new DOT tokens are 100 times smaller than the old ones. Investors who participated in the ICO of Polkadot suddenly had a hundred times more coins, the value of which was of course also divided by one hundred. But in the summer, the crypto world was really looking forward to the launch of Polkadot, the coin immediately stormed into the top 10 in terms of market capitalization. <a href=\"https://www.bitcoinexchangenederland.nl/litecoin/\">LTC Litecoin</a> is well known in crypto.\r\n<h2>Invest in Polkadot with BLOX</h2>\r\nBLOX is the all-in-one cryptocurrency app for your smartphone. Trade the most popular cryptocurrencies at lightning speed, including big names such as Bitcoin, XRP and Ethereum as well as smaller coins such as Polkadot, VeChain and Chainlink. Whether you buy for a euro or can lose a thousand euros, you determine your investment. Knowing more?\r\n\r\nhttps://youtu.be/JD5fgxy2DPk\r\n<h2>What is Polka Dot?</h2>\r\nPolkadot is a project of the Web3 Foundation and provides a framework for developers to build and merge blockchains. It is maintained by Ethereum co-founder Gavin Wood, Robert Habermeier and Peter Czaban. The latter is the technology director of the Web3 Foundation. <a href=\"https://www.bitcoinexchangenederland.nl/vechain/\">Vet Vechain</a> is well known in crypto.\r\n\r\nThe network enables cross-chain communication and interoperability by connecting multiple blockchains into one unified network. Polkadot wants to distinguish itself with:\r\n\r\nheterogeneous sharding\r\n\r\nscalability\r\n\r\nextensibility\r\n\r\ntransparent governance\r\n\r\ncross chain composability\r\n<h2>Relay, para and bridges</h2>\r\nThe Relay chain is the central blockchain of the network where all nodes are located and on which users can stake. Then you have Parachains, these are parallel blockchain shards that connect to the Relay chain. The Parachains are maintained by their own unique nodes, called collators and bridges. These bridges are special blockchains that allow Parachains to connect to Ethereum and Bitcoin.','New cryptocurrency added to app BLOX: Polkadot','','publish','closed','closed','','new-cryptocurrency-added-to-app-blox-polkadot','','','2021-09-22 13:35:48','2021-09-22 13:35:48','',0,'http://genomevalley.org/?p=96',0,'post','',0),(97,1,'2021-09-22 13:35:10','2021-09-22 13:35:10','','pexels-rodnae-productions-8370419','','inherit','closed','closed','','pexels-rodnae-productions-8370419','','','2021-09-22 13:35:10','2021-09-22 13:35:10','',96,'http://genomevalley.org/wp-content/uploads/2021/09/pexels-rodnae-productions-8370419.jpg',0,'attachment','image/jpeg',0),(98,1,'2021-09-22 13:35:48','2021-09-22 13:35:48','Another new coin has been added to the crypto app BLOX. The Dutch app adds Polkadot to the offer. The currency has only been around since August 2020 and can therefore still go in all directions.\r\n<h2>Polkadot an instant success</h2>\r\nThe Polkadot currency is abbreviated to DOT, and has only been freely tradable since August. The coin was immediately denominated, which means that the new DOT tokens are 100 times smaller than the old ones. Investors who participated in the ICO of Polkadot suddenly had a hundred times more coins, the value of which was of course also divided by one hundred. But in the summer, the crypto world was really looking forward to the launch of Polkadot, the coin immediately stormed into the top 10 in terms of market capitalization. <a href=\"https://www.bitcoinexchangenederland.nl/litecoin/\">LTC Litecoin</a> is well known in crypto.\r\n<h2>Invest in Polkadot with BLOX</h2>\r\nBLOX is the all-in-one cryptocurrency app for your smartphone. Trade the most popular cryptocurrencies at lightning speed, including big names such as Bitcoin, XRP and Ethereum as well as smaller coins such as Polkadot, VeChain and Chainlink. Whether you buy for a euro or can lose a thousand euros, you determine your investment. Knowing more?\r\n\r\nhttps://youtu.be/JD5fgxy2DPk\r\n<h2>What is Polka Dot?</h2>\r\nPolkadot is a project of the Web3 Foundation and provides a framework for developers to build and merge blockchains. It is maintained by Ethereum co-founder Gavin Wood, Robert Habermeier and Peter Czaban. The latter is the technology director of the Web3 Foundation. <a href=\"https://www.bitcoinexchangenederland.nl/vechain/\">Vet Vechain</a> is well known in crypto.\r\n\r\nThe network enables cross-chain communication and interoperability by connecting multiple blockchains into one unified network. Polkadot wants to distinguish itself with:\r\n\r\nheterogeneous sharding\r\n\r\nscalability\r\n\r\nextensibility\r\n\r\ntransparent governance\r\n\r\ncross chain composability\r\n<h2>Relay, para and bridges</h2>\r\nThe Relay chain is the central blockchain of the network where all nodes are located and on which users can stake. Then you have Parachains, these are parallel blockchain shards that connect to the Relay chain. The Parachains are maintained by their own unique nodes, called collators and bridges. These bridges are special blockchains that allow Parachains to connect to Ethereum and Bitcoin.','New cryptocurrency added to app BLOX: Polkadot','','inherit','closed','closed','','96-revision-v1','','','2021-09-22 13:35:48','2021-09-22 13:35:48','',96,'http://genomevalley.org/?p=98',0,'revision','',0),(99,0,'2021-09-23 13:02:57','2021-09-23 13:02:57','<iframe title=\"Hester Peirce, SEC commissioner on how the U.S. needs to stay on top of crypto innovation\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/JD5fgxy2DPk?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','3b29de8780ae9cc36f622532c2c8f0f3','','','2021-09-23 13:02:57','2021-09-23 13:02:57','',0,'http://genomevalley.org/3b29de8780ae9cc36f622532c2c8f0f3/',0,'oembed_cache','',0),(100,0,'2021-09-23 13:03:37','2021-09-23 13:03:37','<iframe title=\"Easiest Way To Make Money Trading Crypto in 2021 (How to Get Started)\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/Nt67sDFQlhs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','f214e052f39f357b4266800dc2d214c3','','','2021-09-23 13:03:37','2021-09-23 13:03:37','',0,'http://genomevalley.org/f214e052f39f357b4266800dc2d214c3/',0,'oembed_cache','',0),(102,1,'2021-11-22 13:36:17','2021-11-22 13:36:17','On Tuesday, a hacker stole cryptocurrency worth more than $600 million from DeFi platform Poly Network. The hacker appears to be returning some of the loot to Poly Network. The mega-theft is the latest in a string of crypto hacks that have exploded this year.\r\n\r\nCryptocurrencies worth more than $600 million were stolen from Poly Network on Tuesday. It is a crypto platform for decentralized financial services (DeFi). It is one of the largest crypto heists ever.\r\n<h2>Poly Network</h2>\r\nThe Poly Network administrators have issued a Twitter appeal to the hacker to return the money – to which the thief appears to be responding.\r\n\r\nPoly Network announced the hack on Twitter, noting that the attack involved binance, polygon and the ethereum network crypto platforms. Various types of cryptocurrencies were looted, including shiba inu, wrapped ether, wrapped bitcoin, uniswap and a series of stablecoins. <a href=\"https://renovato.io/\">https://renovato.io/</a> has enough information. The platform also published the hacker\'s wallet addresses and urged crypto exchanges and miners to block tokens from these addresses.\r\n\r\nhttps://youtu.be/an4w6qL20Pw\r\n\r\nIn response, the issuer of cryptocurrency tether (a \"stablecoin\" pegged to the dollar) froze about $33 million worth of tokens that were part of the hack. This was reported by Paolo Ardoino, head of technology at tether on Twitter.\r\n<h2>Digital coins</h2>\r\nPoly Network said they found out how the hacker could steal the digital coins. In addition, the company tweeted that it had so far recovered more than $4 million worth of cryptocurrencies from the hacker. Coindesk reported on Wednesday that the hacker said in a response that he would return the funds. He made this known in a message hidden in an ethereum transaction to himself.\r\n\r\n“Failed to contact the poly. I need a secure multisig wallet from you,\" the hacker added in a separate transaction. A multisig wallet, or multisignature wallet, is an online wallet that provides access to multiple people with a key. Transactions from this wallet can only be made if each user agrees. Poly Network then created the requested multi-signature wallets and reached out to the hacker.\r\n\r\n“Justice in any country will consider this a major economic crime and you will be prosecuted. It is very unwise for you to make further trades. <a href=\"https://moveco.io/\">Moveco.io</a> has enough information. The money you stole is from tens of thousands of members of the crypto community. You need to talk to us to work out a solution,” the network\'s developers wrote on Twitter.\r\n<h2>The biggest theft in DeFi . history</h2>\r\nThe digital theft is the latest in a growing number of crypto hacks and probably one of the largest to date. Poly Network says it was the largest amount of money stolen in DeFi (decentralized financial services platforms) history. Research and consulting firm Ciphertrace noted in a recent report that DeFi hacks accounted for more than three-quarters of the cryptocurrency stolen so far this year. At the end of July, approximately $361 million had been stolen in DeFi hacks, compared to $111 million in other crypto frauds.\r\n\r\nThe Ciphertrace report shows that for the whole of 2020 the DeFi hacks accounted for \'only\' $129 million. That amounts to a quarter of the total $516 million in crypto fraud last year.','The hacker who stole $600 million from a crypto platform has since refunded $4 million','','publish','closed','closed','','the-hacker-who-stole-600-million-from-a-crypto-platform-has-since-refunded-4-million','','','2021-09-29 13:38:28','2021-09-29 13:38:28','',0,'http://genomevalley.org/?p=102',0,'post','',0),(103,1,'2021-09-29 13:37:17','2021-09-29 13:37:17','','mackenzie-marco-XG88BYDSDZA-unsplash','','inherit','closed','closed','','mackenzie-marco-xg88bydsdza-unsplash','','','2021-09-29 13:37:17','2021-09-29 13:37:17','',102,'http://genomevalley.org/wp-content/uploads/2021/09/mackenzie-marco-XG88BYDSDZA-unsplash.jpg',0,'attachment','image/jpeg',0),(104,1,'2021-09-29 13:37:32','2021-09-29 13:37:32','On Tuesday, a hacker stole cryptocurrency worth more than $600 million from DeFi platform Poly Network. The hacker appears to be returning some of the loot to Poly Network. The mega-theft is the latest in a string of crypto hacks that have exploded this year.\r\n\r\nCryptocurrencies worth more than $600 million were stolen from Poly Network on Tuesday. It is a crypto platform for decentralized financial services (DeFi). It is one of the largest crypto heists ever.\r\n<h2>Poly Network</h2>\r\nThe Poly Network administrators have issued a Twitter appeal to the hacker to return the money – to which the thief appears to be responding.\r\n\r\nPoly Network announced the hack on Twitter, noting that the attack involved binance, polygon and the ethereum network crypto platforms. Various types of cryptocurrencies were looted, including shiba inu, wrapped ether, wrapped bitcoin, uniswap and a series of stablecoins. <a href=\"https://renovato.io/\">https://renovato.io/</a> has enough information. The platform also published the hacker\'s wallet addresses and urged crypto exchanges and miners to block tokens from these addresses.\r\n\r\nhttps://youtu.be/an4w6qL20Pw\r\n\r\nIn response, the issuer of cryptocurrency tether (a \"stablecoin\" pegged to the dollar) froze about $33 million worth of tokens that were part of the hack. This was reported by Paolo Ardoino, head of technology at tether on Twitter.\r\n<h2>Digital coins</h2>\r\nPoly Network said they found out how the hacker could steal the digital coins. In addition, the company tweeted that it had so far recovered more than $4 million worth of cryptocurrencies from the hacker. Coindesk reported on Wednesday that the hacker said in a response that he would return the funds. He made this known in a message hidden in an ethereum transaction to himself.\r\n\r\n“Failed to contact the poly. I need a secure multisig wallet from you,\" the hacker added in a separate transaction. A multisig wallet, or multisignature wallet, is an online wallet that provides access to multiple people with a key. Transactions from this wallet can only be made if each user agrees. Poly Network then created the requested multi-signature wallets and reached out to the hacker.\r\n\r\n“Justice in any country will consider this a major economic crime and you will be prosecuted. It is very unwise for you to make further trades. <a href=\"https://moveco.io/\">Moveco.io</a> has enough information. The money you stole is from tens of thousands of members of the crypto community. You need to talk to us to work out a solution,” the network\'s developers wrote on Twitter.\r\n<h2>The biggest theft in DeFi . history</h2>\r\nThe digital theft is the latest in a growing number of crypto hacks and probably one of the largest to date. Poly Network says it was the largest amount of money stolen in DeFi (decentralized financial services platforms) history. Research and consulting firm Ciphertrace noted in a recent report that DeFi hacks accounted for more than three-quarters of the cryptocurrency stolen so far this year. At the end of July, approximately $361 million had been stolen in DeFi hacks, compared to $111 million in other crypto frauds.\r\n\r\nThe Ciphertrace report shows that for the whole of 2020 the DeFi hacks accounted for \'only\' $129 million. That amounts to a quarter of the total $516 million in crypto fraud last year.','The hacker who stole $600 million from a crypto platform has since refunded $4 million','','inherit','closed','closed','','102-revision-v1','','','2021-09-29 13:37:32','2021-09-29 13:37:32','',102,'http://genomevalley.org/?p=104',0,'revision','',0),(106,0,'2021-10-15 19:50:28','2021-10-15 19:50:28','','','','publish','closed','closed','','106','','','2021-10-15 19:50:28','2021-10-15 19:50:28','',0,'http://genomevalley.org/nf_sub/106/',0,'nf_sub','',0),(108,1,'2021-12-14 08:59:23','2021-12-14 08:59:23','The Market Effect Bitcoin Monitor provides insight into the view that the Dutch consumer has on investing in Bitcoin.\r\n\r\nThe price of the Bitcoin has been a topic of discussion for years, including on the shop floor at Markteffect. Within the Markteffect team, opinions are divided about Bitcoin. This division was the decisive factor in developing a monitor on how the Dutch consumer actually views Bitcoin. Who are the \"lovers\" and who are the \"haters\"? The first measurement of the Bitcoin Monitor Market Effect took place at the end of March. It turns out that more than 3.5 million Dutch people are currently considering investing in Bitcoin. <a href=\"https://currencyconverters.org/id/cryptocurrencies\">Indo crypto website</a> is popular.\r\n<h2>Lovers and haters</h2>\r\nOne of the Bitcoin lovers within Markteffect is Roy Zengers, Business Unit Manager. He started investing in Bitcoin years ago and is the person who is only too happy to raise the subject in the workplace. For example, he says: “Bitcoin is the most scarce asset ever and I believe that its value will increase significantly in the coming years. Bitcoin also ensures that all people worldwide can be their own bank, which ensures that you are in full control of your own assets. Bitcoin is decentralized and has a deflationary effect. Bitcoin is certainly a safe haven for me. ”\r\n\r\nHowever, not everyone is equally positive and enthusiastic about the subject. For example, there has been talk about the enormously fluctuating rate at which the Bitcoin assumes a different value almost every minute. To some \"haters\" it also seems as if only the success stories are shared and there is little support for where the successes come from. It is not a real coin, that makes it elusive and that is why it is also seen as hot air.\r\n\r\nhttps://youtu.be/D7Zhr9Zk6oE\r\n<h2>The first results</h2>\r\nThe question of whether Bitcoin is hot air or a safe haven has not been answered internally and gave the trigger to develop the Market Effect Bitcoin Monitor. The Market Effect Bitcoin Monitor is used to chart the attitude, sentiment and investment behavior surrounding Bitcoin. The survey was conducted among a representative sample of 1,020 respondents aged 18 years and older. The first results show that in addition to the 3.5 million Dutch people who are considering investing in Bitcoin, more than 700,000 Dutch people already own (part of) Bitcoin. No less than 62% of these only joined in the past year. <a href=\"https://currencyconverters.org/es/cryptocurrencies\">Spain Cryptocurrency</a> is popular.\r\n\r\nThe risks of investing are experienced differently when it comes to Bitcoin. When investing outside the cryptocurrency, 54% indicate that the risk of the investment is an important factor in the consideration process. When it comes to investing in Bitcoin, only 22% indicate that the risk of the investment is an important factor in the consideration process.\r\n<h2>Infographic of the first results</h2>\r\nMarket effect Bitcoin Monitor\r\n\r\nWhat\'s next?\r\n\r\nClient Consultant Bas de Vries (Markteffect) will give a webinar together with Willem Jan Rutgers (Bitvavo) during the Road to MIE on May 31 at 16:30. Determine yourself whether Bitcoin is hot air or a safe haven? Sign up here for the webinar!','Is Bitcoin Hot Air or a Safe Haven?','','publish','closed','closed','','is-bitcoin-hot-air-or-a-safe-haven','','','2021-12-08 09:06:01','2021-12-08 09:06:01','',0,'http://genomevalley.org/?p=108',0,'post','',0),(109,1,'2021-12-08 09:05:38','2021-12-08 09:05:38','','pexels-rodnae-productions-8370783','','inherit','closed','closed','','pexels-rodnae-productions-8370783','','','2021-12-08 09:05:38','2021-12-08 09:05:38','',108,'http://genomevalley.org/wp-content/uploads/2021/12/pexels-rodnae-productions-8370783.jpg',0,'attachment','image/jpeg',0),(110,1,'2021-12-08 09:06:01','2021-12-08 09:06:01','The Market Effect Bitcoin Monitor provides insight into the view that the Dutch consumer has on investing in Bitcoin.\r\n\r\nThe price of the Bitcoin has been a topic of discussion for years, including on the shop floor at Markteffect. Within the Markteffect team, opinions are divided about Bitcoin. This division was the decisive factor in developing a monitor on how the Dutch consumer actually views Bitcoin. Who are the \"lovers\" and who are the \"haters\"? The first measurement of the Bitcoin Monitor Market Effect took place at the end of March. It turns out that more than 3.5 million Dutch people are currently considering investing in Bitcoin. <a href=\"https://currencyconverters.org/id/cryptocurrencies\">Indo crypto website</a> is popular.\r\n<h2>Lovers and haters</h2>\r\nOne of the Bitcoin lovers within Markteffect is Roy Zengers, Business Unit Manager. He started investing in Bitcoin years ago and is the person who is only too happy to raise the subject in the workplace. For example, he says: “Bitcoin is the most scarce asset ever and I believe that its value will increase significantly in the coming years. Bitcoin also ensures that all people worldwide can be their own bank, which ensures that you are in full control of your own assets. Bitcoin is decentralized and has a deflationary effect. Bitcoin is certainly a safe haven for me. ”\r\n\r\nHowever, not everyone is equally positive and enthusiastic about the subject. For example, there has been talk about the enormously fluctuating rate at which the Bitcoin assumes a different value almost every minute. To some \"haters\" it also seems as if only the success stories are shared and there is little support for where the successes come from. It is not a real coin, that makes it elusive and that is why it is also seen as hot air.\r\n\r\nhttps://youtu.be/D7Zhr9Zk6oE\r\n<h2>The first results</h2>\r\nThe question of whether Bitcoin is hot air or a safe haven has not been answered internally and gave the trigger to develop the Market Effect Bitcoin Monitor. The Market Effect Bitcoin Monitor is used to chart the attitude, sentiment and investment behavior surrounding Bitcoin. The survey was conducted among a representative sample of 1,020 respondents aged 18 years and older. The first results show that in addition to the 3.5 million Dutch people who are considering investing in Bitcoin, more than 700,000 Dutch people already own (part of) Bitcoin. No less than 62% of these only joined in the past year. <a href=\"https://currencyconverters.org/es/cryptocurrencies\">Spain Cryptocurrency</a> is popular.\r\n\r\nThe risks of investing are experienced differently when it comes to Bitcoin. When investing outside the cryptocurrency, 54% indicate that the risk of the investment is an important factor in the consideration process. When it comes to investing in Bitcoin, only 22% indicate that the risk of the investment is an important factor in the consideration process.\r\n<h2>Infographic of the first results</h2>\r\nMarket effect Bitcoin Monitor\r\n\r\nWhat\'s next?\r\n\r\nClient Consultant Bas de Vries (Markteffect) will give a webinar together with Willem Jan Rutgers (Bitvavo) during the Road to MIE on May 31 at 16:30. Determine yourself whether Bitcoin is hot air or a safe haven? Sign up here for the webinar!','Is Bitcoin Hot Air or a Safe Haven?','','inherit','closed','closed','','108-revision-v1','','','2021-12-08 09:06:01','2021-12-08 09:06:01','',108,'http://genomevalley.org/?p=110',0,'revision','',0),(111,0,'2021-12-13 18:59:36','2021-12-13 18:59:36','<iframe title=\"CARDANO ADA CRYPTO CRASH, BUY THE DIP? SEPT 12th CATALYST, CARDANO ADA PRICE PREDICTION NEWS UPDATE\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/an4w6qL20Pw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','bdeecec2231c1d492bf6362e8fcc7f3b','','','2021-12-13 18:59:36','2021-12-13 18:59:36','',0,'http://genomevalley.org/bdeecec2231c1d492bf6362e8fcc7f3b/',0,'oembed_cache','',0),(112,0,'2021-12-18 18:58:43','2021-12-18 18:58:43','<iframe title=\"BITCOIN LIVE : BTC, TECH STOCKS CONTINUE TO SLIDE. ETH STRONG\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/D7Zhr9Zk6oE?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','546b21a119f5595996cb99c5f61367ac','','','2021-12-18 18:58:43','2021-12-18 18:58:43','',0,'http://genomevalley.org/546b21a119f5595996cb99c5f61367ac/',0,'oembed_cache','',0),(113,0,'2022-03-21 04:16:54','2022-03-21 04:16:54','','','','publish','closed','closed','','113','','','2022-03-21 04:16:54','2022-03-21 04:16:54','',0,'http://genomevalley.org/nf_sub/113/',0,'nf_sub','',0),(114,0,'2022-03-31 01:53:29','2022-03-31 01:53:29','','','','publish','closed','closed','','114','','','2022-03-31 01:53:29','2022-03-31 01:53:29','',0,'http://genomevalley.org/nf_sub/114/',0,'nf_sub','',0),(115,0,'2022-06-30 00:09:26','2022-06-30 00:09:26','','','','publish','closed','closed','','115','','','2022-06-30 00:09:26','2022-06-30 00:09:26','',0,'https://genomevalley.org/nf_sub/115/',0,'nf_sub','',0),(116,0,'2022-07-05 02:18:41','2022-07-05 02:18:41','','','','publish','closed','closed','','116','','','2022-07-05 02:18:41','2022-07-05 02:18:41','',0,'https://genomevalley.org/nf_sub/116/',0,'nf_sub','',0),(117,0,'2022-09-13 04:16:21','2022-09-13 04:16:21','','','','publish','closed','closed','','117','','','2022-09-13 04:16:21','2022-09-13 04:16:21','',0,'https://genomevalley.org/nf_sub/117/',0,'nf_sub','',0),(118,0,'2022-11-07 02:55:21','2022-11-07 02:55:21','','','','publish','closed','closed','','118','','','2022-11-07 02:55:21','2022-11-07 02:55:21','',0,'https://genomevalley.org/nf_sub/118/',0,'nf_sub','',0),(120,0,'2023-02-02 15:43:56','2023-02-02 15:43:56','','','','publish','closed','closed','','120','','','2023-02-02 15:43:56','2023-02-02 15:43:56','',0,'https://genomevalley.org/nf_sub/120/',0,'nf_sub','',0),(121,0,'2023-02-09 12:17:42','2023-02-09 12:17:42','','','','publish','closed','closed','','121','','','2023-02-09 12:17:42','2023-02-09 12:17:42','',0,'https://genomevalley.org/nf_sub/121/',0,'nf_sub','',0),(122,0,'2023-02-14 07:53:32','2023-02-14 07:53:32','','','','publish','closed','closed','','122','','','2023-02-14 07:53:32','2023-02-14 07:53:32','',0,'https://genomevalley.org/nf_sub/122/',0,'nf_sub','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_relationships`
--

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

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (5,3,0),(5,4,0),(5,5,0),(8,3,0),(8,4,0),(8,5,0),(33,6,0),(34,6,0),(35,6,0),(37,6,0),(38,6,0),(39,7,0),(40,7,0),(41,7,0),(42,7,0),(43,8,0),(44,8,0),(45,8,0),(83,9,0),(93,10,0),(96,10,0),(102,10,0),(108,10,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

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

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'category','',0,0),(3,3,'category','',0,2),(4,4,'category','',0,2),(5,5,'category','',0,2),(6,6,'nav_menu','',0,5),(7,7,'nav_menu','',0,4),(8,8,'nav_menu','',0,3),(9,9,'category','',0,1),(10,10,'category','',0,4);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

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

--
-- Dumping data for table `wp_termmeta`
--

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

--
-- Table structure for table `wp_terms`
--

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

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'General','general',0),(3,'Blog','blog',0),(4,'News','news',0),(5,'Genome Valley','genome-valley',0),(6,'Main menu','main-menu',0),(7,'Social menu','social-menu',0),(8,'Top menu','top-menu',0),(9,'IP for VPN','ip-for-vpn',0),(10,'Digital valuta','digital-valuta',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

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

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','admin'),(2,1,'first_name','Vivan'),(3,1,'last_name','Cook'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:2:{s:64:\"65f6ce90fed21e02166ec9faeb1befeb8b0565e51a7f9f533c41a40f50ebce67\";a:4:{s:10:\"expiration\";i:1673625654;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:60:\"Mozilla/5.0 (compatible; MainWP/4.1.5.1; +http://mainwp.com)\";s:5:\"login\";i:1673452854;}s:64:\"8eda4d3d699e431cad41fb57acd436b6beaebb0f2c4c556bc487d696f1fdf9e5\";a:4:{s:10:\"expiration\";i:1673625655;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:60:\"Mozilla/5.0 (compatible; MainWP/4.1.5.1; +http://mainwp.com)\";s:5:\"login\";i:1673452855;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','119'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"131.153.148.0\";}'),(19,1,'wp_user-settings','libraryContent=browse&editor=tinymce'),(20,1,'wp_user-settings-time','1623959505'),(22,1,'_yoast_wpseo_profile_updated','1602143138'),(23,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(24,1,'metaboxhidden_nav-menus','a:2:{i:0;s:30:\"add-post-type-wpautoterms_page\";i:1;s:12:\"add-post_tag\";}'),(26,1,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:15;s:9:\"\0*\0reason\";s:23:\"home_url_option_changed\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"1\";s:10:\"user_login\";s:5:\"admin\";s:9:\"user_pass\";s:34:\"$P$By/rpUZgIKbJntGHf1FseAVzvxqYBT0\";s:13:\"user_nicename\";s:5:\"admin\";s:10:\"user_email\";s:21:\"[email protected]\";s:8:\"user_url\";s:23:\"http://genomevalley.org\";s:15:\"user_registered\";s:19:\"2020-07-23 20:04:22\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:10:\"Vivan Cook\";}s:2:\"ID\";i:1;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:63:{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:20:\"wpseo_manage_options\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.80000000000000004;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

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

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'admin','$P$By/rpUZgIKbJntGHf1FseAVzvxqYBT0','admin','[email protected]','http://genomevalley.org','2020-07-23 20:04:22','',0,'Vivan Cook');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpil_keyword_select_links`
--

DROP TABLE IF EXISTS `wp_wpil_keyword_select_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpil_keyword_select_links` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `keyword_id` int unsigned NOT NULL,
  `post_id` int unsigned NOT NULL,
  `post_type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `sentence_text` text COLLATE utf8mb4_unicode_ci,
  `case_keyword` text COLLATE utf8mb4_unicode_ci,
  `meta_data` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `keyword_id` (`keyword_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpil_keyword_select_links`
--

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

--
-- Table structure for table `wp_wpil_report_links`
--

DROP TABLE IF EXISTS `wp_wpil_report_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpil_report_links` (
  `link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint unsigned NOT NULL,
  `clean_url` text COLLATE utf8mb4_unicode_ci,
  `raw_url` text COLLATE utf8mb4_unicode_ci,
  `host` text COLLATE utf8mb4_unicode_ci,
  `anchor` text COLLATE utf8mb4_unicode_ci,
  `internal` tinyint(1) DEFAULT '0',
  `has_links` tinyint(1) NOT NULL DEFAULT '0',
  `post_type` text COLLATE utf8mb4_unicode_ci,
  `location` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`link_id`),
  KEY `post_id` (`post_id`),
  KEY `clean_url` (`clean_url`(500))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpil_report_links`
--

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

--
-- Table structure for table `wp_yoast_indexable`
--

DROP TABLE IF EXISTS `wp_yoast_indexable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_yoast_indexable` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `permalink` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `permalink_hash` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `object_id` bigint DEFAULT NULL,
  `object_type` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `object_sub_type` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `author_id` bigint DEFAULT NULL,
  `post_parent` bigint DEFAULT NULL,
  `title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `breadcrumb_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `post_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT NULL,
  `is_protected` tinyint(1) DEFAULT '0',
  `has_public_posts` tinyint(1) DEFAULT NULL,
  `number_of_pages` int unsigned DEFAULT NULL,
  `canonical` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `primary_focus_keyword` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `primary_focus_keyword_score` int DEFAULT NULL,
  `readability_score` int DEFAULT NULL,
  `is_cornerstone` tinyint(1) DEFAULT '0',
  `is_robots_noindex` tinyint(1) DEFAULT '0',
  `is_robots_nofollow` tinyint(1) DEFAULT '0',
  `is_robots_noarchive` tinyint(1) DEFAULT '0',
  `is_robots_noimageindex` tinyint(1) DEFAULT '0',
  `is_robots_nosnippet` tinyint(1) DEFAULT '0',
  `twitter_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `twitter_image` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `twitter_description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `twitter_image_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `twitter_image_source` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `open_graph_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `open_graph_description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `open_graph_image` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `open_graph_image_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `open_graph_image_source` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `open_graph_image_meta` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `link_count` int DEFAULT NULL,
  `incoming_link_count` int DEFAULT NULL,
  `prominent_words_version` int unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint NOT NULL DEFAULT '1',
  `language` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `region` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `schema_page_type` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `schema_article_type` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `has_ancestors` tinyint(1) DEFAULT '0',
  `estimated_reading_time_minutes` int DEFAULT NULL,
  `version` int DEFAULT '1',
  `object_last_modified` datetime DEFAULT NULL,
  `object_published_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `object_id_and_type` (`object_id`,`object_type`),
  KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
  KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
  KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`),
  KEY `published_sitemap_index` (`object_published_at`,`is_robots_noindex`,`object_type`,`object_sub_type`)
) ENGINE=InnoDB AUTO_INCREMENT=96 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_indexable`
--

LOCK TABLES `wp_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable` VALUES (1,'https://genomevalley.org/author/admin/','38:36ba51394ec79e95f0aaa13a0b3da2ac',1,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/d0f7cc94cbf39796caed602f7239d3d9?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/d0f7cc94cbf39796caed602f7239d3d9?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2020-10-08 07:39:56','2022-06-07 02:38:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-12-08 09:06:01','2020-10-08 07:36:35'),(2,'https://genomevalley.org/hyderabad-indias-genome-valley/','56:58c667487e9f7349284f531fbf45447a',5,'post','post',1,0,NULL,NULL,'Hyderabad &#8211; India&#8217;s Genome Valley','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://genomevalley.org/wp-content/uploads/2020/10/895-scaled.jpg',NULL,'6','featured-image',NULL,NULL,'https://genomevalley.org/wp-content/uploads/2020/10/895-scaled.jpg','6','featured-image','{\"width\":2560,\"height\":1643,\"url\":\"https://genomevalley.org/wp-content/uploads/2020/10/895-scaled.jpg\",\"path\":\"/opt/aphex/sites/genomevalley.org/wp-content/uploads/2020/10/895-scaled.jpg\",\"size\":\"full\",\"id\":6,\"alt\":\"\",\"pixels\":4206080,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-10-08 07:39:56','2022-06-07 06:11:09',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-08 07:36:35','2020-10-08 07:36:35'),(3,'http://genomevalley.org/wp-content/uploads/2020/10/895-scaled.jpg','65:f0ff353f33e112dae415ca3c8a597afd',6,'post','attachment',1,5,NULL,NULL,'895','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://genomevalley.org/wp-content/uploads/2020/10/895-scaled.jpg',NULL,'6','attachment-image',NULL,NULL,'http://genomevalley.org/wp-content/uploads/2020/10/895-scaled.jpg','6','attachment-image','{\"width\":2560,\"height\":1643,\"url\":\"http://genomevalley.org/wp-content/uploads/2020/10/895-scaled.jpg\",\"path\":\"/opt/aphex/sites/genomevalley.org/wp-content/uploads/2020/10/895-scaled.jpg\",\"size\":\"full\",\"id\":6,\"alt\":\"\",\"pixels\":4206080,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-10-08 07:39:56','2022-12-14 18:04:57',1,NULL,NULL,NULL,NULL,1,NULL,2,'2020-10-08 07:35:28','2020-10-08 07:35:28'),(6,'https://genomevalley.org/category/uncategorized/','48:a25444e01068806b77badbdee4df7575',1,'term','category',NULL,NULL,NULL,NULL,'Uncategorized',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:39:56','2022-12-14 18:04:57',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL),(7,'https://genomevalley.org/category/general/','42:b644894327f06ea7e2f94b69dabf0117',2,'term','category',NULL,NULL,NULL,NULL,'General',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:39:56','2022-12-14 18:04:57',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL),(8,'https://genomevalley.org/category/blog/','39:40ff6d5604ca1ddc3d64b95567766c3d',3,'term','category',NULL,NULL,NULL,NULL,'Blog',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:39:56','2022-06-07 06:47:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-08 07:43:48','2020-10-08 07:36:35'),(9,'https://genomevalley.org/category/news/','39:f1df2d12be83e5f9873e52bda18ac09d',4,'term','category',NULL,NULL,NULL,NULL,'News',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:39:56','2022-06-07 05:47:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-08 07:43:48','2020-10-08 07:36:35'),(10,'https://genomevalley.org/category/genome-valley/','48:904f68f47c3102d9a781775bbbf2fcaf',5,'term','category',NULL,NULL,NULL,NULL,'Genome Valley',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:39:56','2022-06-07 06:34:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-08 07:43:48','2020-10-08 07:36:35'),(11,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Page not found %%sep%% %%sitename%%',NULL,'Error 404: Page not found',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-10-08 07:39:56','2022-12-14 18:04:57',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(12,NULL,NULL,NULL,'system-page','search-result',NULL,NULL,'You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-10-08 07:39:56','2022-07-02 08:04:07',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(13,NULL,NULL,NULL,'date-archive',NULL,NULL,NULL,'%%date%% %%page%% %%sep%% %%sitename%%','',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-10-08 07:39:56','2022-06-08 10:22:12',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(14,'https://genomevalley.org/','25:74b65fa2b3bab0689c07251437b88ca7',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','Hyderabad the growing state of india','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'%%sitename%%','','','0',NULL,NULL,NULL,NULL,NULL,'2020-10-08 07:39:56','2023-02-14 07:53:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-02-14 07:53:32','2020-10-08 07:36:35'),(15,'https://genomevalley.org/what-does-india-hold-for-job-seekers/','62:e4be573aa11840a967fc3f70014fffe2',8,'post','post',1,0,NULL,NULL,'What Does India Hold for Job Seekers?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://genomevalley.org/wp-content/uploads/2020/10/896.jpg',NULL,'9','featured-image',NULL,NULL,'https://genomevalley.org/wp-content/uploads/2020/10/896.jpg','9','featured-image','{\"width\":1200,\"height\":900,\"url\":\"https://genomevalley.org/wp-content/uploads/2020/10/896.jpg\",\"path\":\"/opt/aphex/sites/genomevalley.org/wp-content/uploads/2020/10/896.jpg\",\"size\":\"full\",\"id\":9,\"alt\":\"\",\"pixels\":1080000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-10-08 07:40:22','2022-06-07 02:38:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-08 07:43:48','2020-10-08 07:43:48'),(16,'http://genomevalley.org/wp-content/uploads/2020/10/896.jpg','58:1013b198f83d5b0f4fd13a366749a77d',9,'post','attachment',1,8,NULL,NULL,'896','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://genomevalley.org/wp-content/uploads/2020/10/896.jpg',NULL,'9','attachment-image',NULL,NULL,'http://genomevalley.org/wp-content/uploads/2020/10/896.jpg','9','attachment-image','{\"width\":1200,\"height\":900,\"url\":\"http://genomevalley.org/wp-content/uploads/2020/10/896.jpg\",\"path\":\"/opt/aphex/sites/genomevalley.org/wp-content/uploads/2020/10/896.jpg\",\"size\":\"full\",\"id\":9,\"alt\":\"\",\"pixels\":1080000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-10-08 07:43:05','2022-12-14 18:04:57',1,NULL,NULL,NULL,NULL,1,NULL,2,'2020-10-08 07:43:05','2020-10-08 07:43:05'),(20,'https://genomevalley.org/home/','30:cb95c57e7408be46d1db9d37f2274748',15,'post','page',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:48:44','2022-06-07 06:11:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-08 07:48:55','2020-10-08 07:48:55'),(21,'https://genomevalley.org/about/','31:b24b5b87340cf91d5287286917d0edee',16,'post','page',1,0,NULL,NULL,'About','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:48:45','2022-06-07 06:11:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-08 07:51:06','2020-10-08 07:51:06'),(22,'https://genomevalley.org/contact-us/','36:559f78657cc49e532b351bcfb159f6cf',17,'post','page',1,0,NULL,NULL,'Contact Us','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:48:46','2022-06-07 06:11:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-08 07:51:58','2020-10-08 07:51:58'),(23,'https://genomevalley.org/privacy-policy/','40:8ff9d318e494afd8d25ffe3c958c66b8',18,'post','page',1,0,NULL,NULL,'Privacy Policy','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:48:47','2022-06-07 06:11:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-08 07:53:30','2020-10-08 07:53:30'),(24,'https://genomevalley.org/terms-and-conditions/','46:eff268590fa54152b1fa8955c4d53da2',19,'post','page',1,0,NULL,NULL,'Terms and Conditions','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:48:49','2022-06-07 06:11:09',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-08 07:53:42','2020-10-08 07:53:42'),(29,NULL,NULL,33,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:54:47','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(30,NULL,NULL,34,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:54:47','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(31,NULL,NULL,35,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:54:47','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(32,NULL,NULL,36,'post','nav_menu_item',1,0,NULL,NULL,'','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:54:47','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(33,NULL,NULL,37,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:54:47','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(34,NULL,NULL,38,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:54:47','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(35,NULL,NULL,39,'post','nav_menu_item',1,0,NULL,NULL,'Facebook','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:55:57','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(36,NULL,NULL,40,'post','nav_menu_item',1,0,NULL,NULL,'Twitter','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:56:30','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(37,NULL,NULL,41,'post','nav_menu_item',1,0,NULL,NULL,'LinkedIn','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:56:57','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(38,'https://genomevalley.org/wpautoterms/','37:a268c41b941132d9a1560b769a798596',NULL,'post-type-archive','wpautoterms_page',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Legal Pages',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-10-08 07:57:41','2022-06-07 11:26:50',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL),(39,NULL,NULL,42,'post','nav_menu_item',1,0,NULL,NULL,'Pinterest','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:57:44','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(40,NULL,NULL,43,'post','nav_menu_item',1,0,NULL,NULL,'1703 Heather Sees Way,Copan','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:59:09','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(41,NULL,NULL,44,'post','nav_menu_item',1,0,NULL,NULL,'Phone: 918-719-6817','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 07:59:35','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(42,NULL,NULL,45,'post','nav_menu_item',1,0,NULL,NULL,'Email: [email protected]','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 08:00:29','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(43,'http://genomevalley.org/wp-content/uploads/2020/10/897.jpg','58:b485f67d35a8c53ac6dbe09b4f8411cf',46,'post','attachment',1,0,NULL,NULL,'897','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://genomevalley.org/wp-content/uploads/2020/10/897.jpg',NULL,'46','attachment-image',NULL,NULL,'http://genomevalley.org/wp-content/uploads/2020/10/897.jpg','46','attachment-image','{\"width\":347,\"height\":502,\"url\":\"http://genomevalley.org/wp-content/uploads/2020/10/897.jpg\",\"path\":\"/opt/aphex/sites/genomevalley.org/wp-content/uploads/2020/10/897.jpg\",\"size\":\"full\",\"id\":46,\"alt\":\"\",\"pixels\":174194,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-10-08 08:03:48','2022-12-14 18:04:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-08 08:03:48','2020-10-08 08:03:48'),(44,'http://genomevalley.org/wp-content/uploads/2020/10/898.png','58:f99ee694e1a5155dc346a01df0d16289',47,'post','attachment',1,0,NULL,NULL,'898','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://genomevalley.org/wp-content/uploads/2020/10/898.png',NULL,'47','attachment-image',NULL,NULL,'http://genomevalley.org/wp-content/uploads/2020/10/898.png','47','attachment-image','{\"width\":512,\"height\":345,\"url\":\"http://genomevalley.org/wp-content/uploads/2020/10/898.png\",\"path\":\"/opt/aphex/sites/genomevalley.org/wp-content/uploads/2020/10/898.png\",\"size\":\"full\",\"id\":47,\"alt\":\"\",\"pixels\":176640,\"type\":\"image/png\"}',0,NULL,NULL,'2020-10-08 08:04:47','2022-12-14 18:04:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-08 08:04:47','2020-10-08 08:04:47'),(45,NULL,NULL,49,'post','custom_css',1,0,NULL,NULL,'refresh-blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-08 08:13:10','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(54,'http://genomevalley.org/wp-content/uploads/2020/10/favicon57.png','64:bf65416a493673fbc250a67fb40579f5',64,'post','attachment',1,0,NULL,NULL,'favicon57','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://genomevalley.org/wp-content/uploads/2020/10/favicon57.png',NULL,'64','attachment-image',NULL,NULL,'http://genomevalley.org/wp-content/uploads/2020/10/favicon57.png','64','attachment-image','{\"width\":194,\"height\":123,\"url\":\"http://genomevalley.org/wp-content/uploads/2020/10/favicon57.png\",\"path\":\"/opt/aphex/sites/genomevalley.org/wp-content/uploads/2020/10/favicon57.png\",\"size\":\"full\",\"id\":64,\"alt\":\"\",\"pixels\":23862,\"type\":\"image/png\"}',0,NULL,NULL,'2020-10-08 09:11:12','2022-12-14 18:04:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-08 09:11:12','2020-10-08 09:11:12'),(60,'http://genomevalley.org/wp-content/uploads/2020/10/899.jpg','58:2f1b006dc2bba8d97da363a1dc022a95',74,'post','attachment',1,0,NULL,NULL,'899','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://genomevalley.org/wp-content/uploads/2020/10/899.jpg',NULL,'74','attachment-image',NULL,NULL,'http://genomevalley.org/wp-content/uploads/2020/10/899-1024x512.jpg','74','attachment-image','{\"width\":1024,\"height\":512,\"path\":\"2020/10/899-1024x512.jpg\",\"url\":\"http://genomevalley.org/wp-content/uploads/2020/10/899-1024x512.jpg\",\"size\":\"large\",\"id\":74,\"alt\":\"\",\"pixels\":524288,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-10-08 09:18:18','2022-12-14 18:04:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-08 09:18:18','2020-10-08 09:18:18'),(61,'http://genomevalley.org/wp-content/uploads/2020/10/cropped-899.jpg','66:3bf06330dd2f1c707c2c9e557fc57e9c',75,'post','attachment',1,0,NULL,NULL,'cropped-899.jpg','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://genomevalley.org/wp-content/uploads/2020/10/cropped-899.jpg',NULL,'75','attachment-image',NULL,NULL,'http://genomevalley.org/wp-content/uploads/2020/10/cropped-899.jpg','75','attachment-image','{\"width\":1000,\"height\":288,\"url\":\"http://genomevalley.org/wp-content/uploads/2020/10/cropped-899.jpg\",\"path\":\"/opt/aphex/sites/genomevalley.org/wp-content/uploads/2020/10/cropped-899.jpg\",\"size\":\"full\",\"id\":75,\"alt\":\"\",\"pixels\":288000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-10-08 09:19:10','2022-12-14 18:04:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-08 09:19:10','2020-10-08 09:19:10'),(63,'https://genomevalley.org/author/','32:41ae4589976a5d7ac70561dafd71f355',0,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2021-01-20 08:10:36','2023-02-14 07:53:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-02-14 07:53:32','2021-01-20 08:10:36'),(64,NULL,NULL,77,'post','nf_sub',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 08:10:36','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(65,NULL,NULL,78,'post','nf_sub',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-04-08 05:53:06','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(68,NULL,NULL,81,'post','nf_sub',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-06-14 07:21:46','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(69,'https://genomevalley.org/ip-addresses-are-essential-for-the-identification-of-a-computer-medium-connected-to-the-internet-how-does-a-vpn-work-with-these-ips/','157:944054af05089a48cb1117b863360d31',83,'post','post',1,0,NULL,NULL,'IP addresses are essential for the identification of a computer medium connected to the Internet, how does a VPN work with these IP&#8217;s?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://genomevalley.org/wp-content/uploads/2021/07/asfsaf1241.jpg',NULL,'87','featured-image',NULL,NULL,'https://genomevalley.org/wp-content/uploads/2021/07/asfsaf1241.jpg','87','featured-image','{\"width\":750,\"height\":511,\"url\":\"https://genomevalley.org/wp-content/uploads/2021/07/asfsaf1241.jpg\",\"path\":\"/opt/aphex/sites/genomevalley.org/wp-content/uploads/2021/07/asfsaf1241.jpg\",\"size\":\"full\",\"id\":87,\"alt\":\"\",\"pixels\":383250,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2021-06-17 19:30:08','2022-06-07 06:11:09',1,NULL,NULL,NULL,NULL,0,2,2,'2021-06-17 20:49:27','2021-07-06 07:11:38'),(70,'https://genomevalley.org/category/ip-for-vpn/','45:3dc539cdde25bead49ac6814737e2c85',9,'term','category',NULL,NULL,NULL,NULL,'IP for VPN',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-06-17 19:51:41','2022-06-07 06:11:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-06-17 20:49:27','2021-07-06 07:11:38'),(71,'http://genomevalley.org/wp-content/uploads/2021/07/214afasf12.jpg','65:4794ce24e3071b3fb3764e21e872ec6f',86,'post','attachment',1,83,NULL,NULL,'214afasf12','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://genomevalley.org/wp-content/uploads/2021/07/214afasf12.jpg',NULL,'86','attachment-image',NULL,NULL,'http://genomevalley.org/wp-content/uploads/2021/07/214afasf12.jpg','86','attachment-image','{\"width\":1280,\"height\":844,\"url\":\"http://genomevalley.org/wp-content/uploads/2021/07/214afasf12.jpg\",\"path\":\"/opt/aphex/sites/genomevalley.org/wp-content/uploads/2021/07/214afasf12.jpg\",\"size\":\"full\",\"id\":86,\"alt\":\"\",\"pixels\":1080320,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-06-17 20:15:41','2022-12-14 18:04:57',1,NULL,NULL,NULL,NULL,1,NULL,2,'2021-06-17 20:15:41','2021-06-17 20:15:41'),(72,'http://genomevalley.org/wp-content/uploads/2021/07/asfsaf1241.jpg','65:3a9d29ea191368d523340281b1974bf0',87,'post','attachment',1,83,NULL,NULL,'asfsaf1241','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://genomevalley.org/wp-content/uploads/2021/07/asfsaf1241.jpg',NULL,'87','attachment-image',NULL,NULL,'http://genomevalley.org/wp-content/uploads/2021/07/asfsaf1241.jpg','87','attachment-image','{\"width\":750,\"height\":511,\"url\":\"http://genomevalley.org/wp-content/uploads/2021/07/asfsaf1241.jpg\",\"path\":\"/opt/aphex/sites/genomevalley.org/wp-content/uploads/2021/07/asfsaf1241.jpg\",\"size\":\"full\",\"id\":87,\"alt\":\"\",\"pixels\":383250,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-06-17 20:20:12','2022-12-14 18:04:57',1,NULL,NULL,NULL,NULL,1,NULL,2,'2021-06-17 20:20:12','2021-06-17 20:20:12'),(74,NULL,NULL,89,'post','nf_sub',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-07-20 04:01:45','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(75,NULL,NULL,90,'post','nf_sub',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-08-26 15:45:21','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(76,'https://genomevalley.org/category/digital-valuta/','49:6dc63ee28cda01416fb554c733f5582e',10,'term','category',NULL,NULL,NULL,NULL,'Digital valuta',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-20 12:56:03','2022-06-07 07:38:09',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-12-08 09:06:01','2021-08-26 13:34:27'),(77,'https://genomevalley.org/because-bitcoin-and-crypto-price-forecast-week-21-our-analyses/','88:fa515a70f09782e26939b92cc155accc',93,'post','post',1,0,NULL,NULL,'BECAUSE Bitcoin and Crypto price forecast week 21: our analyses','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://genomevalley.org/wp-content/uploads/2021/09/pexels-pixabay-315788-scaled.jpg',NULL,'94','featured-image',NULL,NULL,'https://genomevalley.org/wp-content/uploads/2021/09/pexels-pixabay-315788-scaled.jpg','94','featured-image','{\"width\":2560,\"height\":1922,\"url\":\"https://genomevalley.org/wp-content/uploads/2021/09/pexels-pixabay-315788-scaled.jpg\",\"path\":\"/opt/aphex/sites/genomevalley.org/wp-content/uploads/2021/09/pexels-pixabay-315788-scaled.jpg\",\"size\":\"full\",\"id\":94,\"alt\":\"\",\"pixels\":4920320,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2021-09-20 12:57:38','2022-06-07 06:11:09',1,NULL,NULL,NULL,NULL,0,4,2,'2021-09-20 12:57:46','2021-09-04 09:15:23'),(78,'http://genomevalley.org/wp-content/uploads/2021/09/pexels-pixabay-315788-scaled.jpg','83:b8ecdbfc8fc76059433c132dea070d8a',94,'post','attachment',1,93,NULL,NULL,'pexels-pixabay-315788','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://genomevalley.org/wp-content/uploads/2021/09/pexels-pixabay-315788-scaled.jpg',NULL,'94','attachment-image',NULL,NULL,'http://genomevalley.org/wp-content/uploads/2021/09/pexels-pixabay-315788-scaled.jpg','94','attachment-image','{\"width\":2560,\"height\":1922,\"url\":\"http://genomevalley.org/wp-content/uploads/2021/09/pexels-pixabay-315788-scaled.jpg\",\"path\":\"/opt/aphex/sites/genomevalley.org/wp-content/uploads/2021/09/pexels-pixabay-315788-scaled.jpg\",\"size\":\"full\",\"id\":94,\"alt\":\"\",\"pixels\":4920320,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-22 13:34:12','2022-12-14 18:04:57',1,NULL,NULL,NULL,NULL,1,NULL,2,'2021-09-20 12:57:31','2021-09-20 12:57:31'),(80,'https://genomevalley.org/new-cryptocurrency-added-to-app-blox-polkadot/','71:807cd8ffb66063daa06e634bf6f9ed96',96,'post','post',1,0,NULL,NULL,'New cryptocurrency added to app BLOX: Polkadot','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://genomevalley.org/wp-content/uploads/2021/09/pexels-rodnae-productions-8370419-scaled.jpg',NULL,'97','featured-image',NULL,NULL,'https://genomevalley.org/wp-content/uploads/2021/09/pexels-rodnae-productions-8370419-scaled.jpg','97','featured-image','{\"width\":2560,\"height\":1707,\"url\":\"https://genomevalley.org/wp-content/uploads/2021/09/pexels-rodnae-productions-8370419-scaled.jpg\",\"path\":\"/opt/aphex/sites/genomevalley.org/wp-content/uploads/2021/09/pexels-rodnae-productions-8370419-scaled.jpg\",\"size\":\"full\",\"id\":97,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2021-09-22 13:35:48','2022-06-07 06:11:09',1,NULL,NULL,NULL,NULL,0,2,2,'2021-09-22 13:35:48','2021-08-26 13:34:27'),(81,'http://genomevalley.org/wp-content/uploads/2021/09/pexels-rodnae-productions-8370419-scaled.jpg','95:0852676f7ff7f46566a30f118ca0918a',97,'post','attachment',1,96,NULL,NULL,'pexels-rodnae-productions-8370419','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://genomevalley.org/wp-content/uploads/2021/09/pexels-rodnae-productions-8370419-scaled.jpg',NULL,'97','attachment-image',NULL,NULL,'http://genomevalley.org/wp-content/uploads/2021/09/pexels-rodnae-productions-8370419-scaled.jpg','97','attachment-image','{\"width\":2560,\"height\":1707,\"url\":\"http://genomevalley.org/wp-content/uploads/2021/09/pexels-rodnae-productions-8370419-scaled.jpg\",\"path\":\"/opt/aphex/sites/genomevalley.org/wp-content/uploads/2021/09/pexels-rodnae-productions-8370419-scaled.jpg\",\"size\":\"full\",\"id\":97,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-29 13:35:53','2022-12-14 18:04:57',1,NULL,NULL,NULL,NULL,1,NULL,2,'2021-09-22 13:35:10','2021-09-22 13:35:10'),(82,'https://genomevalley.org/the-hacker-who-stole-600-million-from-a-crypto-platform-has-since-refunded-4-million/','110:d70fb71dcce7a5734b06ac93a3b8cf01',102,'post','post',1,0,NULL,NULL,'The hacker who stole $600 million from a crypto platform has since refunded $4 million','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://genomevalley.org/wp-content/uploads/2021/09/mackenzie-marco-XG88BYDSDZA-unsplash-scaled.jpg',NULL,'103','featured-image',NULL,NULL,'https://genomevalley.org/wp-content/uploads/2021/09/mackenzie-marco-XG88BYDSDZA-unsplash-scaled.jpg','103','featured-image','{\"width\":2560,\"height\":1707,\"url\":\"https://genomevalley.org/wp-content/uploads/2021/09/mackenzie-marco-XG88BYDSDZA-unsplash-scaled.jpg\",\"path\":\"/opt/aphex/sites/genomevalley.org/wp-content/uploads/2021/09/mackenzie-marco-XG88BYDSDZA-unsplash-scaled.jpg\",\"size\":\"full\",\"id\":103,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2021-09-29 13:36:48','2022-06-07 06:11:09',1,NULL,NULL,NULL,NULL,0,3,2,'2021-09-29 13:38:28','2021-11-22 13:36:17'),(83,'http://genomevalley.org/wp-content/uploads/2021/09/mackenzie-marco-XG88BYDSDZA-unsplash-scaled.jpg','98:c2f8a56c4619b797af3a76a5d8f2c15a',103,'post','attachment',1,102,NULL,NULL,'mackenzie-marco-XG88BYDSDZA-unsplash','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://genomevalley.org/wp-content/uploads/2021/09/mackenzie-marco-XG88BYDSDZA-unsplash-scaled.jpg',NULL,'103','attachment-image',NULL,NULL,'http://genomevalley.org/wp-content/uploads/2021/09/mackenzie-marco-XG88BYDSDZA-unsplash-scaled.jpg','103','attachment-image','{\"width\":2560,\"height\":1707,\"url\":\"http://genomevalley.org/wp-content/uploads/2021/09/mackenzie-marco-XG88BYDSDZA-unsplash-scaled.jpg\",\"path\":\"/opt/aphex/sites/genomevalley.org/wp-content/uploads/2021/09/mackenzie-marco-XG88BYDSDZA-unsplash-scaled.jpg\",\"size\":\"full\",\"id\":103,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-29 13:37:17','2022-12-14 18:04:57',1,NULL,NULL,NULL,NULL,1,NULL,2,'2021-09-29 13:37:17','2021-09-29 13:37:17'),(84,NULL,NULL,106,'post','nf_sub',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-10-15 19:50:28','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(85,'https://genomevalley.org/is-bitcoin-hot-air-or-a-safe-haven/','60:832e4bd44a79384f1052a88145a87fe5',108,'post','post',1,0,NULL,NULL,'Is Bitcoin Hot Air or a Safe Haven?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://genomevalley.org/wp-content/uploads/2021/12/pexels-rodnae-productions-8370783.jpg',NULL,'109','featured-image',NULL,NULL,'https://genomevalley.org/wp-content/uploads/2021/12/pexels-rodnae-productions-8370783.jpg','109','featured-image','{\"width\":800,\"height\":600,\"url\":\"https://genomevalley.org/wp-content/uploads/2021/12/pexels-rodnae-productions-8370783.jpg\",\"path\":\"/opt/aphex/sites/genomevalley.org/wp-content/uploads/2021/12/pexels-rodnae-productions-8370783.jpg\",\"size\":\"full\",\"id\":109,\"alt\":\"\",\"pixels\":480000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2021-12-08 09:06:01','2022-06-07 06:11:05',1,NULL,NULL,NULL,NULL,0,3,2,'2021-12-08 09:06:01','2021-12-14 08:59:23'),(86,NULL,NULL,113,'post','nf_sub',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-03-21 04:16:54','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,'2022-03-21 04:16:54','2022-03-21 04:16:54'),(87,NULL,NULL,114,'post','nf_sub',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-03-31 01:53:29','2022-06-06 23:47:56',1,NULL,NULL,NULL,NULL,0,NULL,0,'2022-03-31 01:53:29','2022-03-31 01:53:29'),(88,'https://genomevalley.org/nf_sub/115/','36:b8d410942ac9b2c61b835873e1cf653a',115,'post','nf_sub',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-06-30 00:09:26','2022-06-30 00:09:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-30 00:09:26','2022-06-30 00:09:26'),(89,'https://genomevalley.org/nf_sub/116/','36:f13c6563041a3dffa548ba051fd9d97c',116,'post','nf_sub',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-07-05 02:18:41','2022-07-05 02:18:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-05 02:18:41','2022-07-05 02:18:41'),(90,'https://genomevalley.org/nf_sub/117/','36:ecd7fc12574f6ba623c8d1688dcc6b36',117,'post','nf_sub',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-09-13 04:16:22','2022-09-13 04:16:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-13 04:16:21','2022-09-13 04:16:21'),(91,'https://genomevalley.org/nf_sub/118/','36:6bbd94ace1e3c71771af3054e0731c65',118,'post','nf_sub',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-11-07 02:55:21','2022-11-07 02:55:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-11-07 02:55:21','2022-11-07 02:55:21'),(92,'http://genomevalley.org/wp-content/uploads/2021/12/pexels-rodnae-productions-8370783.jpg','88:9ea9d3c4f30a3b60b99285faee37b64c',109,'post','attachment',1,108,NULL,NULL,'pexels-rodnae-productions-8370783','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://genomevalley.org/wp-content/uploads/2021/12/pexels-rodnae-productions-8370783.jpg',NULL,'109','attachment-image',NULL,NULL,'http://genomevalley.org/wp-content/uploads/2021/12/pexels-rodnae-productions-8370783.jpg','109','attachment-image','{\"width\":800,\"height\":600,\"url\":\"http://genomevalley.org/wp-content/uploads/2021/12/pexels-rodnae-productions-8370783.jpg\",\"path\":\"/opt/aphex/sites/genomevalley.org/wp-content/uploads/2021/12/pexels-rodnae-productions-8370783.jpg\",\"size\":\"full\",\"id\":109,\"alt\":\"\",\"pixels\":480000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-12-14 18:04:57','2022-12-14 18:04:57',1,NULL,NULL,NULL,NULL,1,NULL,2,'2021-12-08 09:05:38','2021-12-08 09:05:38'),(93,'https://genomevalley.org/nf_sub/120/','36:3fde0df0ea8207aa0347772d6c9ea4a2',120,'post','nf_sub',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-02-02 15:43:56','2023-02-02 15:43:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-02-02 15:43:56','2023-02-02 15:43:56'),(94,'https://genomevalley.org/nf_sub/121/','36:3ebd7346d12a5dda8a49cebfe23c64d5',121,'post','nf_sub',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-02-09 12:17:43','2023-02-09 12:17:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-02-09 12:17:42','2023-02-09 12:17:42'),(95,'https://genomevalley.org/nf_sub/122/','36:6343c001e828b87b6346353f11d7a894',122,'post','nf_sub',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-02-14 07:53:32','2023-02-14 07:53:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-02-14 07:53:32','2023-02-14 07:53:32');
/*!40000 ALTER TABLE `wp_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_indexable_hierarchy`
--

DROP TABLE IF EXISTS `wp_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_yoast_indexable_hierarchy` (
  `indexable_id` int unsigned NOT NULL,
  `ancestor_id` int unsigned NOT NULL,
  `depth` int unsigned DEFAULT NULL,
  `blog_id` bigint NOT NULL DEFAULT '1',
  PRIMARY KEY (`indexable_id`,`ancestor_id`),
  KEY `indexable_id` (`indexable_id`),
  KEY `ancestor_id` (`ancestor_id`),
  KEY `depth` (`depth`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_indexable_hierarchy`
--

LOCK TABLES `wp_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable_hierarchy` VALUES (1,0,0,1),(2,0,0,1),(3,2,1,1),(6,0,0,1),(7,0,0,1),(8,0,0,1),(9,0,0,1),(10,0,0,1),(12,0,0,1),(13,0,0,1),(14,0,0,1),(15,0,0,1),(16,15,1,1),(20,0,0,1),(21,0,0,1),(22,0,0,1),(23,0,0,1),(24,0,0,1),(38,0,0,1),(43,0,0,1),(44,0,0,1),(54,0,0,1),(60,0,0,1),(61,0,0,1),(63,0,0,1),(65,0,0,1),(68,0,0,1),(69,0,0,1),(70,0,0,1),(71,69,1,1),(72,69,1,1),(74,0,0,1),(75,0,0,1),(76,0,0,1),(77,0,0,1),(78,77,1,1),(80,0,0,1),(81,80,1,1),(82,0,0,1),(83,82,1,1),(85,0,0,1);
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_migrations`
--

DROP TABLE IF EXISTS `wp_yoast_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_yoast_migrations` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `version` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `WP_yoast_migrations_version` (`version`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_migrations`
--

LOCK TABLES `wp_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `wp_yoast_migrations` DISABLE KEYS */;
INSERT INTO `wp_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200616130143'),(16,'20200617122511'),(17,'20200702141921'),(18,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134'),(22,'20210817092415'),(23,'20211020091404');
/*!40000 ALTER TABLE `wp_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_primary_term`
--

DROP TABLE IF EXISTS `wp_yoast_primary_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_yoast_primary_term` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint DEFAULT NULL,
  `term_id` bigint DEFAULT NULL,
  `taxonomy` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `post_taxonomy` (`post_id`,`taxonomy`),
  KEY `post_term` (`post_id`,`term_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_primary_term`
--

LOCK TABLES `wp_yoast_primary_term` WRITE;
/*!40000 ALTER TABLE `wp_yoast_primary_term` DISABLE KEYS */;
INSERT INTO `wp_yoast_primary_term` VALUES (1,8,3,'category','2020-10-08 07:43:48','2022-06-07 02:38:21',1),(2,83,9,'category','2021-06-17 19:51:49','2022-06-07 06:11:09',1),(3,93,10,'category','2021-09-20 12:57:46','2022-06-07 06:11:09',1),(4,96,10,'category','2021-09-22 13:35:48','2022-06-07 06:11:09',1),(5,102,10,'category','2021-09-29 13:37:32','2022-06-07 06:11:09',1),(6,108,10,'category','2021-12-08 09:06:01','2022-06-07 06:11:05',1);
/*!40000 ALTER TABLE `wp_yoast_primary_term` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_seo_links`
--

DROP TABLE IF EXISTS `wp_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_yoast_seo_links` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) DEFAULT NULL,
  `post_id` bigint unsigned DEFAULT NULL,
  `target_post_id` bigint unsigned DEFAULT NULL,
  `type` varchar(8) DEFAULT NULL,
  `indexable_id` int unsigned DEFAULT NULL,
  `target_indexable_id` int unsigned DEFAULT NULL,
  `height` int unsigned DEFAULT NULL,
  `width` int unsigned DEFAULT NULL,
  `size` int unsigned DEFAULT NULL,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`),
  KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_seo_links`
--

LOCK TABLES `wp_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_links` VALUES (1,'https://www.globalwatchonline.com/da/vpn/reviews/surfshark/',83,NULL,'external',69,NULL,NULL,NULL,NULL,NULL,NULL),(2,'https://www.globalwatchonline.com/ja/vpn/guide/vpn-%e5%ae%89%e3%81%84/',83,NULL,'external',69,NULL,NULL,NULL,NULL,NULL,NULL),(3,'https://cryptofriends.io/eos-price',93,NULL,'external',77,NULL,NULL,NULL,NULL,NULL,NULL),(4,'https://cryptofriends.io/',93,NULL,'external',77,NULL,NULL,NULL,NULL,NULL,NULL),(5,'https://www.bitcoinexchangenederland.nl/litecoin/',96,NULL,'external',80,NULL,NULL,NULL,NULL,NULL,NULL),(6,'https://www.bitcoinexchangenederland.nl/vechain/',96,NULL,'external',80,NULL,NULL,NULL,NULL,NULL,NULL),(7,'https://renovato.io/',102,NULL,'external',82,NULL,NULL,NULL,NULL,NULL,NULL),(8,'https://moveco.io/',102,NULL,'external',82,NULL,NULL,NULL,NULL,NULL,NULL),(9,'https://currencyconverters.org/id/cryptocurrencies',108,NULL,'external',85,NULL,NULL,NULL,NULL,NULL,NULL),(10,'https://currencyconverters.org/es/cryptocurrencies',108,NULL,'external',85,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `wp_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2023-03-29  7:58:25