File: /opt/aphex/sites/activistaspse.net/db.sql
-- MySQL dump 10.13 Distrib 8.0.32, for Linux (x86_64)
--
-- Host: localhost Database: activistaspse_net
-- ------------------------------------------------------
-- 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_actionscheduler_actions`
--
DROP TABLE IF EXISTS `wp_actionscheduler_actions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_actionscheduler_actions` (
`action_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`hook` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`scheduled_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`scheduled_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`args` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`schedule` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`group_id` bigint unsigned NOT NULL DEFAULT '0',
`attempts` int NOT NULL DEFAULT '0',
`last_attempt_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_attempt_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`claim_id` bigint unsigned NOT NULL DEFAULT '0',
`extended_args` varchar(8000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`action_id`),
KEY `hook` (`hook`),
KEY `status` (`status`),
KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
KEY `args` (`args`),
KEY `group_id` (`group_id`),
KEY `last_attempt_gmt` (`last_attempt_gmt`),
KEY `claim_id` (`claim_id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_actionscheduler_actions`
--
LOCK TABLES `wp_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_actions` VALUES (9,'wpforms_process_entry_emails_meta_cleanup','complete','2020-09-15 00:00:00','2020-09-15 00:00:00','{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1600128000;s:18:\"\0*\0first_timestamp\";i:1600128000;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1600128000;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2020-11-02 13:14:04','2020-11-02 13:14:04',0,NULL),(10,'wpforms_process_entry_emails_meta_cleanup','pending','2020-11-03 13:14:04','2020-11-03 13:14:04','{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1604409244;s:18:\"\0*\0first_timestamp\";i:1600128000;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1604409244;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(11,'wpforms_admin_notifications_update','pending','0000-00-00 00:00:00','0000-00-00 00:00:00','{\"tasks_meta_id\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL);
/*!40000 ALTER TABLE `wp_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_actionscheduler_claims`
--
DROP TABLE IF EXISTS `wp_actionscheduler_claims`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_actionscheduler_claims` (
`claim_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`claim_id`),
KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_actionscheduler_claims`
--
LOCK TABLES `wp_actionscheduler_claims` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_claims` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_actionscheduler_claims` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_actionscheduler_groups`
--
DROP TABLE IF EXISTS `wp_actionscheduler_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_actionscheduler_groups` (
`group_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`group_id`),
KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_actionscheduler_groups`
--
LOCK TABLES `wp_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'wpforms');
/*!40000 ALTER TABLE `wp_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_actionscheduler_logs`
--
DROP TABLE IF EXISTS `wp_actionscheduler_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_actionscheduler_logs` (
`log_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`action_id` bigint unsigned NOT NULL,
`message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`log_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`log_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`log_id`),
KEY `action_id` (`action_id`),
KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_actionscheduler_logs`
--
LOCK TABLES `wp_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_logs` VALUES (4,9,'action created','2020-09-14 03:42:41','2020-09-14 03:42:41'),(5,9,'action started via WP Cron','2020-11-02 13:14:03','2020-11-02 13:14:03'),(6,9,'action complete via WP Cron','2020-11-02 13:14:04','2020-11-02 13:14:04'),(7,10,'action created','2020-11-02 13:14:04','2020-11-02 13:14:04'),(8,11,'action created','2021-05-04 19:58:44','2021-05-04 19:58:44');
/*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- 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_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=30868 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://activistaspse.net','yes'),(2,'home','http://activistaspse.net','yes'),(3,'blogname','ACTIVISTAS PSE','yes'),(4,'blogdescription','','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'),(29,'rewrite_rules','a:110:{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: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'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:15:{i:0;s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";i:1;s:91:\"all-in-one-wp-migration-multisite-extension/all-in-one-wp-migration-multisite-extension.php\";i:2;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:3;s:81:\"auto-terms-of-service-and-privacy-policy/auto-terms-of-service-privacy-policy.php\";i:4;s:31:\"cache-enabler/cache-enabler.php\";i:5;s:33:\"classic-editor/classic-editor.php\";i:6;s:37:\"link-whisper-premium/link-whisper.php\";i:7;s:29:\"mainwp-child/mainwp-child.php\";i:8;s:75:\"recent-posts-widget-with-thumbnails/recent-posts-widget-with-thumbnails.php\";i:9;s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";i:10;s:47:\"simple-social-buttons/simple-social-buttons.php\";i:11;s:23:\"spiderblocker/index.php\";i:12;s:29:\"theme-editor/theme_editor.php\";i:13;s:59:\"ultimate-social-media-icons/ultimate_social_media_icons.php\";i:14;s:37:\"wordpress-autoblogging/basic-auth.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','photoway','yes'),(41,'stylesheet','photoway','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:2:{i:0;i:66;i:1;i:71;}','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:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:3:{s:59:\"ultimate-social-media-icons/ultimate_social_media_icons.php\";s:20:\"sfsi_Unistall_plugin\";s:33:\"classic-editor/classic-editor.php\";a:2:{i:0;s:14:\"Classic_Editor\";i:1;s:9:\"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','69','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','1602841708','yes'),(94,'initial_db_version','47018','yes'),(95,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{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:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s: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:44:{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: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:0:\"\";}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:8:{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:13:\"right-sidebar\";a:4:{i:0;s:8:\"search-2\";i:1;s:37:\"recent-posts-widget-with-thumbnails-2\";i:2;s:12:\"categories-2\";i:3;s:10:\"calendar-2\";}s:14:\"header-sidebar\";a:1:{i:0;s:10:\"nav_menu-2\";}s:25:\"photoway-footer-sidebar-1\";a:1:{i:0;s:16:\"wpforms-widget-2\";}s:25:\"photoway-footer-sidebar-2\";a:1:{i:0;s:13:\"sfsi-widget-3\";}s:25:\"photoway-footer-sidebar-3\";a:1:{i:0;s:13:\"media_image-3\";}s:25:\"photoway-footer-sidebar-4\";a:1:{i:0;s:13:\"media_video-3\";}s:13:\"array_version\";i:3;}','yes'),(103,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'db-version-secure','48UBfTQPCW','yes'),(105,'tagline','','yes'),(107,'auth_key','8Grx|v7sk/kJ.PP#iEHcArGi|fKje|hf-7]Ou|`~_DBK_Gi`PpEA~TN}k0=krDb_','no'),(108,'auth_salt','(</d.}x>F,~7giro8~([RNJ}=tHCZ$kVQ,%7i94_)P}%Q76&=YQ+YcN,#b!~a}rA','no'),(109,'logged_in_key','-,:hM-in~z}rgRdvF_K`*.37&K[c8I-/[[k>1toxG#0JF,E}9^wQjEgyS#y>5GWY','no'),(110,'logged_in_salt','?gh<MO^mw.D[.iB5cDqhpA$#%NRE^{`QbcT@8bPN9b__vSIR}})m5El]KsPs$#K|','no'),(111,'cron','a:8:{i:1653843994;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:1653846514;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1653860914;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1653869418;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:1653888664;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:1653904112;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:1653904114;a:4:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s: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;}}}s:7:\"version\";i:2;}','yes'),(112,'update_day','3','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:\"Calender\";}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:2048;s:6:\"height\";i:1365;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:57;s:3:\"url\";s:57:\"http://activistaspse.net/wp-content/uploads/2020/06/3.jpg\";s:5:\"title\";s:9:\"Know More\";}i:3;a:15:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:9:\"Know More\";s:13:\"attachment_id\";i:57;s:3:\"url\";s:65:\"http://activistaspse.net/wp-content/uploads/2020/06/3-300x200.jpg\";s:5:\"title\";s:9:\"Know More\";}s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_media_video','a:3:{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:28:\"https://youtu.be/AS-qO15M_go\";s:5:\"title\";s:16:\"Check The Videos\";}i:3;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:28:\"https://youtu.be/AS-qO15M_go\";s:5:\"title\";s:12:\"More Details\";}s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_nav_menu','a:2:{i:2;a:2:{s:5:\"title\";s:10:\"Navigation\";s:8:\"nav_menu\";i:7;}s:12:\"_multiwidget\";i:1;}','yes'),(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(122,'nonce_key','XE.MTX1R;UY0gzYK*8^E:NXi[ &6KznoW2p2e[RF>yti/;KH4+|3^yCm J4(T>.N','no'),(123,'nonce_salt','T,lZ-:QEpN4L$V94LjC1hW*7Nf2iUJsYfz2=7W[K:OS4u+)v-gEA[mn lHy)]A=F','no'),(124,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(132,'current_theme','Photoway','yes'),(135,'widget_hoffman_flickr_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(136,'widget_hoffman_recent_comments_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(137,'widget_hoffman_recent_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(138,'theme_mods_hoffman','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1592556937;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'),(139,'crawl-delay-value','4','yes'),(142,'secure_auth_key','9axM(bou9Nw G6c %vB$ky*gy a-hs`3.%-F:a!zOopk-~n=cgSdHP[wNTCo%S~!','no'),(143,'secure_auth_salt','XkMuFb!ZU~ZYNY>WL z<i1IQ}u|x4MbQ~!wm:HPH7{hckw4nl*`]ENe$ytM[BO-Z','no'),(165,'recently_activated','a:0:{}','yes'),(170,'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'),(173,'widget_recent-posts-widget-with-thumbnails','a:2:{i:2;a:36:{s:5:\"title\";s:12:\"Recent Posts\";s:11:\"default_url\";s:97:\"http://activistaspse.net/wp-content/plugins/recent-posts-widget-with-thumbnails/default_thumb.gif\";s:16:\"thumb_dimensions\";s:6:\"custom\";s:12:\"category_ids\";a:1:{i:0;i:0;}s:14:\"excerpt_length\";i:55;s:12:\"number_posts\";i:10;s:17:\"post_title_length\";i:1000;s:12:\"thumb_height\";i:75;s:11:\"thumb_width\";i:75;s:17:\"hide_current_post\";b:0;s:17:\"only_sticky_posts\";b:0;s:17:\"hide_sticky_posts\";b:0;s:10:\"hide_title\";b:0;s:17:\"keep_aspect_ratio\";b:0;s:11:\"keep_sticky\";b:0;s:12:\"only_1st_img\";b:0;s:12:\"random_order\";b:0;s:11:\"show_author\";b:0;s:15:\"show_categories\";b:0;s:20:\"show_comments_number\";b:0;s:9:\"show_date\";b:0;s:12:\"show_excerpt\";b:0;s:14:\"ignore_excerpt\";b:0;s:27:\"ignore_post_content_excerpt\";b:0;s:16:\"set_more_as_link\";b:0;s:11:\"try_1st_img\";b:0;s:11:\"use_default\";b:0;s:16:\"use_default_only\";b:0;s:15:\"open_new_window\";b:0;s:21:\"print_post_categories\";b:0;s:17:\"set_cats_as_links\";b:0;s:14:\"use_inline_css\";b:0;s:10:\"use_no_css\";b:0;s:10:\"show_thumb\";b:1;s:12:\"excerpt_more\";s:6:\" […]\";s:14:\"category_label\";s:2:\"In\";}s:12:\"_multiwidget\";i:1;}','yes'),(176,'action_scheduler_hybrid_store_demarkation','7','yes'),(177,'schema-ActionScheduler_StoreSchema','3.0.1592545830','yes'),(178,'schema-ActionScheduler_LoggerSchema','2.0.1592545830','yes'),(179,'wpforms_version','1.6.0.2','yes'),(180,'wpforms_activated','a:1:{s:4:\"lite\";i:1592545830;}','yes'),(183,'action_scheduler_lock_async-request-runner','1620208105','yes'),(184,'wpforms_version_lite','1.6.0.2','yes'),(185,'widget_wpforms-widget','a:2:{i:2;a:4:{s:5:\"title\";s:16:\"Throw Your Email\";s:7:\"form_id\";i:39;s:10:\"show_title\";b:0;s:9:\"show_desc\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(188,'wpforms_review','a:2:{s:4:\"time\";i:1592545832;s:9:\"dismissed\";b:0;}','yes'),(191,'analyst_cache','s:6:\"a:0:{}\";','yes'),(193,'show_new_notification','yes','yes'),(194,'show_premium_cumulative_count_notification','yes','yes'),(195,'sfsi_custom_icons','no','yes'),(196,'sfsi_section1_options','s:584:\"a:16:{s:16:\"sfsi_rss_display\";s:3:\"yes\";s:18:\"sfsi_email_display\";s:3:\"yes\";s:21:\"sfsi_facebook_display\";s:3:\"yes\";s:20:\"sfsi_twitter_display\";s:3:\"yes\";s:22:\"sfsi_pinterest_display\";s:2:\"no\";s:21:\"sfsi_telegram_display\";s:2:\"no\";s:15:\"sfsi_vk_display\";s:2:\"no\";s:15:\"sfsi_ok_display\";s:2:\"no\";s:19:\"sfsi_wechat_display\";s:2:\"no\";s:18:\"sfsi_weibo_display\";s:2:\"no\";s:22:\"sfsi_instagram_display\";s:2:\"no\";s:21:\"sfsi_linkedin_display\";s:2:\"no\";s:20:\"sfsi_youtube_display\";s:2:\"no\";s:19:\"sfsi_custom_display\";s:0:\"\";s:17:\"sfsi_custom_files\";s:0:\"\";s:21:\"sfsi_whatsapp_display\";s:2:\"no\";}\";','yes'),(197,'sfsi_section2_options','s:1661:\"a:40:{s:12:\"sfsi_rss_url\";s:30:\"http://activistaspse.net/feed/\";s:14:\"sfsi_rss_icons\";s:5:\"email\";s:14:\"sfsi_email_url\";s:48:\"https://follow.it/activistaspse?action=followPub\";s:24:\"sfsi_facebookPage_option\";s:2:\"no\";s:21:\"sfsi_facebookPage_url\";s:0:\"\";s:24:\"sfsi_facebookLike_option\";s:3:\"yes\";s:25:\"sfsi_facebookShare_option\";s:3:\"yes\";s:21:\"sfsi_twitter_followme\";s:2:\"no\";s:27:\"sfsi_twitter_followUserName\";s:0:\"\";s:22:\"sfsi_twitter_aboutPage\";s:3:\"yes\";s:17:\"sfsi_twitter_page\";s:2:\"no\";s:20:\"sfsi_twitter_pageURL\";s:0:\"\";s:26:\"sfsi_twitter_aboutPageText\";s:82:\"Hey, check out this cool site I found: www.yourname.com #Topic via@my_twitter_name\";s:20:\"sfsi_youtube_pageUrl\";s:0:\"\";s:17:\"sfsi_youtube_page\";s:2:\"no\";s:24:\"sfsi_youtubeusernameorid\";s:0:\"\";s:17:\"sfsi_ytube_chnlid\";s:0:\"\";s:19:\"sfsi_youtube_follow\";s:2:\"no\";s:19:\"sfsi_pinterest_page\";s:2:\"no\";s:22:\"sfsi_pinterest_pageUrl\";s:0:\"\";s:23:\"sfsi_pinterest_pingBlog\";s:0:\"\";s:19:\"sfsi_instagram_page\";s:2:\"no\";s:22:\"sfsi_instagram_pageUrl\";s:0:\"\";s:18:\"sfsi_linkedin_page\";s:2:\"no\";s:21:\"sfsi_linkedin_pageURL\";s:0:\"\";s:20:\"sfsi_linkedin_follow\";s:2:\"no\";s:27:\"sfsi_linkedin_followCompany\";s:0:\"\";s:23:\"sfsi_linkedin_SharePage\";s:3:\"yes\";s:30:\"sfsi_linkedin_recommendBusines\";s:2:\"no\";s:30:\"sfsi_linkedin_recommendCompany\";s:0:\"\";s:32:\"sfsi_linkedin_recommendProductId\";s:0:\"\";s:21:\"sfsi_CustomIcon_links\";s:0:\"\";s:21:\"sfsi_telegram_pageURL\";s:0:\"\";s:21:\"sfsi_telegram_message\";s:0:\"\";s:22:\"sfsi_telegram_username\";s:0:\"\";s:25:\"sfsi_telegram_messageName\";s:0:\"\";s:18:\"sfsi_weibo_pageURL\";s:0:\"\";s:15:\"sfsi_vk_pageURL\";s:0:\"\";s:15:\"sfsi_ok_pageURL\";s:0:\"\";s:23:\"sfsi_wechatShare_option\";s:3:\"yes\";}\";','yes'),(198,'sfsi_section3_options','s:638:\"a:15:{s:18:\"sfsi_actvite_theme\";s:11:\"chrome_blue\";s:14:\"sfsi_mouseOver\";s:2:\"no\";s:21:\"sfsi_mouseOver_effect\";s:7:\"fade_in\";s:26:\"sfsi_mouseover_effect_type\";s:10:\"same_icons\";s:18:\"sfsi_shuffle_icons\";s:2:\"no\";s:22:\"sfsi_shuffle_Firstload\";s:2:\"no\";s:21:\"sfsi_shuffle_interval\";s:2:\"no\";s:25:\"sfsi_shuffle_intervalTime\";i:0;s:26:\"sfsi_specialIcon_animation\";s:0:\"\";s:26:\"sfsi_specialIcon_MouseOver\";s:2:\"no\";s:26:\"sfsi_specialIcon_Firstload\";s:2:\"no\";s:32:\"sfsi_specialIcon_Firstload_Icons\";s:3:\"all\";s:25:\"sfsi_specialIcon_interval\";s:2:\"no\";s:29:\"sfsi_specialIcon_intervalTime\";s:0:\"\";s:30:\"sfsi_specialIcon_intervalIcons\";s:3:\"all\";}\";','yes'),(199,'sfsi_section4_options','s:2924:\"a:72:{s:19:\"sfsi_display_counts\";s:2:\"no\";s:24:\"sfsi_email_countsDisplay\";s:2:\"no\";s:21:\"sfsi_email_countsFrom\";s:6:\"source\";s:23:\"sfsi_email_manualCounts\";s:2:\"20\";s:22:\"sfsi_rss_countsDisplay\";s:2:\"no\";s:21:\"sfsi_rss_manualCounts\";s:2:\"20\";s:22:\"sfsi_facebook_PageLink\";s:0:\"\";s:27:\"sfsi_facebook_countsDisplay\";s:2:\"no\";s:24:\"sfsi_facebook_countsFrom\";s:6:\"manual\";s:26:\"sfsi_facebook_manualCounts\";s:2:\"20\";s:26:\"sfsi_twitter_countsDisplay\";s:2:\"no\";s:23:\"sfsi_twitter_countsFrom\";s:6:\"manual\";s:25:\"sfsi_twitter_manualCounts\";s:2:\"20\";s:27:\"sfsi_linkedIn_countsDisplay\";s:2:\"no\";s:24:\"sfsi_linkedIn_countsFrom\";s:6:\"manual\";s:26:\"sfsi_linkedIn_manualCounts\";s:2:\"20\";s:27:\"sfsi_telegram_countsDisplay\";s:2:\"no\";s:24:\"sfsi_telegram_countsFrom\";s:6:\"manual\";s:26:\"sfsi_telegram_manualCounts\";s:2:\"20\";s:21:\"sfsi_vk_countsDisplay\";s:2:\"no\";s:18:\"sfsi_vk_countsFrom\";s:6:\"manual\";s:20:\"sfsi_vk_manualCounts\";s:2:\"20\";s:21:\"sfsi_ok_countsDisplay\";s:2:\"no\";s:18:\"sfsi_ok_countsFrom\";s:6:\"manual\";s:20:\"sfsi_ok_manualCounts\";s:2:\"20\";s:24:\"sfsi_weibo_countsDisplay\";s:2:\"no\";s:21:\"sfsi_weibo_countsFrom\";s:6:\"manual\";s:23:\"sfsi_weibo_manualCounts\";s:2:\"20\";s:17:\"sfsi_round_counts\";s:3:\"yes\";s:20:\"sfsi_original_counts\";s:3:\"yes\";s:27:\"sfsi_responsive_share_count\";s:3:\"yes\";s:25:\"sfsi_wechat_countsDisplay\";s:2:\"no\";s:22:\"sfsi_wechat_countsFrom\";s:6:\"manual\";s:24:\"sfsi_wechat_manualCounts\";s:2:\"20\";s:10:\"ln_api_key\";s:0:\"\";s:13:\"ln_secret_key\";s:0:\"\";s:19:\"ln_oAuth_user_token\";s:0:\"\";s:10:\"ln_company\";s:0:\"\";s:24:\"sfsi_youtubeusernameorid\";s:4:\"name\";s:17:\"sfsi_youtube_user\";s:0:\"\";s:22:\"sfsi_youtube_channelId\";s:0:\"\";s:17:\"sfsi_ytube_chnlid\";s:0:\"\";s:26:\"sfsi_youtube_countsDisplay\";s:2:\"no\";s:23:\"sfsi_youtube_countsFrom\";s:6:\"manual\";s:25:\"sfsi_youtube_manualCounts\";s:2:\"20\";s:28:\"sfsi_pinterest_countsDisplay\";s:2:\"no\";s:25:\"sfsi_pinterest_countsFrom\";s:6:\"manual\";s:27:\"sfsi_pinterest_manualCounts\";s:2:\"20\";s:19:\"sfsi_pinterest_user\";s:0:\"\";s:20:\"sfsi_pinterest_board\";s:0:\"\";s:25:\"sfsi_instagram_countsFrom\";s:6:\"manual\";s:28:\"sfsi_instagram_countsDisplay\";s:2:\"no\";s:27:\"sfsi_instagram_manualCounts\";s:2:\"20\";s:19:\"sfsi_instagram_User\";s:0:\"\";s:23:\"sfsi_instagram_clientid\";s:0:\"\";s:21:\"sfsi_instagram_appurl\";s:0:\"\";s:20:\"sfsi_instagram_token\";s:0:\"\";s:26:\"sfsi_whatsapp_manualCounts\";s:2:\"no\";s:27:\"sfsi_whatsapp_countsDisplay\";s:2:\"no\";s:24:\"sfsi_whatsapp_countsFrom\";s:6:\"manual\";s:26:\"sfsi_snapchat_manualCounts\";s:2:\"20\";s:27:\"sfsi_snapchat_countsDisplay\";s:2:\"no\";s:24:\"sfsi_snapchat_countsFrom\";s:6:\"manual\";s:24:\"sfsi_reddit_manualCounts\";s:2:\"20\";s:25:\"sfsi_reddit_countsDisplay\";s:2:\"no\";s:22:\"sfsi_reddit_countsFrom\";s:6:\"manual\";s:29:\"sfsi_fbmessenger_manualCounts\";s:2:\"20\";s:30:\"sfsi_fbmessenger_countsDisplay\";s:2:\"no\";s:27:\"sfsi_fbmessenger_countsFrom\";s:6:\"manual\";s:24:\"sfsi_tiktok_manualCounts\";s:2:\"20\";s:25:\"sfsi_tiktok_countsDisplay\";s:2:\"no\";s:22:\"sfsi_tiktok_countsFrom\";s:6:\"manual\";}\";','yes'),(200,'sfsi_section5_options','s:2335:\"a:54:{s:15:\"sfsi_icons_size\";s:2:\"40\";s:18:\"sfsi_icons_spacing\";s:1:\"5\";s:20:\"sfsi_icons_Alignment\";s:4:\"left\";s:31:\"sfsi_icons_Alignment_via_widget\";s:4:\"left\";s:34:\"sfsi_icons_Alignment_via_shortcode\";s:4:\"left\";s:17:\"sfsi_icons_perRow\";s:1:\"5\";s:24:\"sfsi_icons_ClickPageOpen\";s:3:\"yes\";s:26:\"sfsi_icons_suppress_errors\";s:2:\"no\";s:16:\"sfsi_icons_stick\";s:2:\"no\";s:18:\"sfsi_rssIcon_order\";s:1:\"1\";s:20:\"sfsi_emailIcon_order\";s:1:\"2\";s:23:\"sfsi_facebookIcon_order\";s:1:\"3\";s:22:\"sfsi_twitterIcon_order\";s:1:\"4\";s:22:\"sfsi_youtubeIcon_order\";s:1:\"5\";s:24:\"sfsi_pinterestIcon_order\";s:1:\"7\";s:23:\"sfsi_linkedinIcon_order\";s:1:\"8\";s:24:\"sfsi_instagramIcon_order\";s:1:\"9\";s:23:\"sfsi_telegramIcon_order\";s:2:\"11\";s:17:\"sfsi_vkIcon_order\";s:2:\"12\";s:17:\"sfsi_okIcon_order\";s:2:\"13\";s:20:\"sfsi_weiboIcon_order\";s:2:\"14\";s:21:\"sfsi_wechatIcon_order\";s:2:\"15\";s:22:\"sfsi_CustomIcons_order\";s:0:\"\";s:22:\"sfsi_rss_MouseOverText\";s:3:\"RSS\";s:24:\"sfsi_email_MouseOverText\";s:15:\"Follow by Email\";s:26:\"sfsi_twitter_MouseOverText\";s:7:\"Twitter\";s:27:\"sfsi_facebook_MouseOverText\";s:8:\"Facebook\";s:27:\"sfsi_linkedIn_MouseOverText\";s:8:\"LinkedIn\";s:28:\"sfsi_pinterest_MouseOverText\";s:9:\"Pinterest\";s:28:\"sfsi_instagram_MouseOverText\";s:9:\"Instagram\";s:26:\"sfsi_youtube_MouseOverText\";s:7:\"YouTube\";s:27:\"sfsi_telegram_MouseOverText\";s:8:\"Telegram\";s:21:\"sfsi_vk_MouseOverText\";s:2:\"VK\";s:21:\"sfsi_ok_MouseOverText\";s:2:\"OK\";s:24:\"sfsi_weibo_MouseOverText\";s:5:\"Weibo\";s:25:\"sfsi_wechat_MouseOverText\";s:6:\"WeChat\";s:26:\"sfsi_custom_MouseOverTexts\";s:0:\"\";s:23:\"sfsi_custom_social_hide\";s:2:\"no\";s:32:\"sfsi_pplus_icons_suppress_errors\";s:2:\"no\";s:23:\"sfsi_whatsappIcon_order\";s:2:\"16\";s:27:\"sfsi_whatsapp_MouseOverText\";s:8:\"WhatsApp\";s:26:\"sfsi_follow_icons_language\";s:12:\"Follow_en_US\";s:28:\"sfsi_facebook_icons_language\";s:14:\"Visit_us_en_US\";s:27:\"sfsi_twitter_icons_language\";s:14:\"Visit_us_en_US\";s:28:\"sfsi_linkedin_icons_language\";s:5:\"en_US\";s:19:\"sfsi_icons_language\";s:5:\"en_US\";s:23:\"sfsi_snapchatIcon_order\";s:2:\"17\";s:21:\"sfsi_redditIcon_order\";s:2:\"18\";s:26:\"sfsi_fbmessengerIcon_order\";s:2:\"19\";s:21:\"sfsi_tiktokIcon_order\";s:2:\"20\";s:27:\"sfsi_snapchat_MouseOverText\";s:8:\"Snapchat\";s:30:\"sfsi_fbmessenger_MouseOverText\";s:11:\"FbMessenger\";s:25:\"sfsi_tiktok_MouseOverText\";s:6:\"Tiktok\";s:25:\"sfsi_reddit_MouseOverText\";s:6:\"Reddit\";}\";','yes'),(201,'sfsi_section6_options','s:1301:\"a:15:{s:17:\"sfsi_show_Onposts\";s:2:\"no\";s:18:\"sfsi_show_Onbottom\";s:2:\"no\";s:22:\"sfsi_icons_postPositon\";s:6:\"source\";s:20:\"sfsi_icons_alignment\";s:12:\"center-right\";s:22:\"sfsi_rss_countsDisplay\";s:2:\"no\";s:20:\"sfsi_textBefor_icons\";s:26:\"Please follow and like us:\";s:12:\"sfsi_rectsub\";s:3:\"yes\";s:11:\"sfsi_rectfb\";s:3:\"yes\";s:12:\"sfsi_rectshr\";s:2:\"no\";s:13:\"sfsi_recttwtr\";s:3:\"yes\";s:14:\"sfsi_rectpinit\";s:3:\"yes\";s:16:\"sfsi_rectfbshare\";s:3:\"yes\";s:24:\"sfsi_display_button_type\";s:17:\"responsive_button\";s:30:\"sfsi_responsive_icons_end_post\";s:2:\"no\";s:21:\"sfsi_responsive_icons\";a:3:{s:13:\"default_icons\";a:3:{s:8:\"facebook\";a:3:{s:6:\"active\";s:3:\"yes\";s:4:\"text\";s:17:\"Share on Facebook\";s:3:\"url\";s:0:\"\";}s:7:\"Twitter\";a:3:{s:6:\"active\";s:3:\"yes\";s:4:\"text\";s:5:\"Tweet\";s:3:\"url\";s:0:\"\";}s:6:\"Follow\";a:3:{s:6:\"active\";s:3:\"yes\";s:4:\"text\";s:9:\"Follow us\";s:3:\"url\";s:0:\"\";}}s:12:\"custom_icons\";a:0:{}s:8:\"settings\";a:12:{s:9:\"icon_size\";s:6:\"Medium\";s:15:\"icon_width_type\";s:16:\"Fully responsive\";s:15:\"icon_width_size\";i:240;s:9:\"edge_type\";s:5:\"Round\";s:11:\"edge_radius\";i:5;s:5:\"style\";s:8:\"Gradient\";s:6:\"margin\";i:10;s:10:\"text_align\";s:8:\"Centered\";s:10:\"show_count\";s:2:\"no\";s:13:\"counter_color\";s:7:\"#aaaaaa\";s:16:\"counter_bg_color\";s:4:\"#fff\";s:16:\"share_count_text\";s:6:\"SHARES\";}}}\";','yes'),(202,'sfsi_section7_options','s:859:\"a:19:{s:15:\"sfsi_show_popup\";s:2:\"no\";s:15:\"sfsi_popup_text\";s:42:\"Enjoy this blog? Please spread the word :)\";s:27:\"sfsi_popup_background_color\";s:7:\"#eff7f7\";s:23:\"sfsi_popup_border_color\";s:7:\"#f3faf2\";s:27:\"sfsi_popup_border_thickness\";s:1:\"1\";s:24:\"sfsi_popup_border_shadow\";s:3:\"yes\";s:15:\"sfsi_popup_font\";s:26:\"Helvetica,Arial,sans-serif\";s:19:\"sfsi_popup_fontSize\";s:2:\"30\";s:20:\"sfsi_popup_fontStyle\";s:6:\"normal\";s:20:\"sfsi_popup_fontColor\";s:7:\"#000000\";s:17:\"sfsi_Show_popupOn\";s:4:\"none\";s:25:\"sfsi_Show_popupOn_PageIDs\";s:0:\"\";s:14:\"sfsi_Shown_pop\";s:8:\"ETscroll\";s:24:\"sfsi_Shown_popupOnceTime\";s:0:\"\";s:32:\"sfsi_Shown_popuplimitPerUserTime\";s:0:\"\";s:36:\"sfsi_Show_popupOn_somepages_blogpage\";s:0:\"\";s:40:\"sfsi_Show_popupOn_somepages_selectedpage\";s:0:\"\";s:26:\"sfsi_popup_show_on_desktop\";s:3:\"yes\";s:25:\"sfsi_popup_show_on_mobile\";s:3:\"yes\";}\";','yes'),(203,'sfsi_section8_options','s:1208:\"a:26:{s:20:\"sfsi_form_adjustment\";s:3:\"yes\";s:16:\"sfsi_form_height\";s:3:\"180\";s:15:\"sfsi_form_width\";s:3:\"230\";s:16:\"sfsi_form_border\";s:2:\"no\";s:26:\"sfsi_form_border_thickness\";s:1:\"1\";s:22:\"sfsi_form_border_color\";s:7:\"#b5b5b5\";s:20:\"sfsi_form_background\";s:7:\"#ffffff\";s:22:\"sfsi_form_heading_text\";s:22:\"Get new posts by email\";s:22:\"sfsi_form_heading_font\";s:26:\"Helvetica,Arial,sans-serif\";s:27:\"sfsi_form_heading_fontstyle\";s:4:\"bold\";s:27:\"sfsi_form_heading_fontcolor\";s:7:\"#000000\";s:26:\"sfsi_form_heading_fontsize\";s:2:\"16\";s:27:\"sfsi_form_heading_fontalign\";s:6:\"center\";s:20:\"sfsi_form_field_text\";s:9:\"Subscribe\";s:20:\"sfsi_form_field_font\";s:26:\"Helvetica,Arial,sans-serif\";s:25:\"sfsi_form_field_fontstyle\";s:6:\"normal\";s:25:\"sfsi_form_field_fontcolor\";s:7:\"#000000\";s:24:\"sfsi_form_field_fontsize\";s:2:\"14\";s:25:\"sfsi_form_field_fontalign\";s:6:\"center\";s:21:\"sfsi_form_button_text\";s:9:\"Subscribe\";s:21:\"sfsi_form_button_font\";s:26:\"Helvetica,Arial,sans-serif\";s:26:\"sfsi_form_button_fontstyle\";s:4:\"bold\";s:26:\"sfsi_form_button_fontcolor\";s:7:\"#000000\";s:25:\"sfsi_form_button_fontsize\";s:2:\"16\";s:26:\"sfsi_form_button_fontalign\";s:6:\"center\";s:27:\"sfsi_form_button_background\";s:7:\"#dedede\";}\";','yes'),(204,'sfsi_section9_options','s:1447:\"a:21:{s:20:\"sfsi_show_via_widget\";s:2:\"no\";s:16:\"sfsi_icons_float\";s:2:\"no\";s:24:\"sfsi_icons_floatPosition\";s:12:\"center-right\";s:26:\"sfsi_icons_floatMargin_top\";s:0:\"\";s:29:\"sfsi_icons_floatMargin_bottom\";s:0:\"\";s:27:\"sfsi_icons_floatMargin_left\";s:0:\"\";s:28:\"sfsi_icons_floatMargin_right\";s:0:\"\";s:23:\"sfsi_disable_floaticons\";s:2:\"no\";s:23:\"sfsi_show_via_shortcode\";s:2:\"no\";s:24:\"sfsi_show_via_afterposts\";s:2:\"no\";s:21:\"sfsi_widget_alignment\";s:10:\"Horizontal\";s:24:\"sfsi_shortcode_alignment\";s:10:\"Horizontal\";s:32:\"sfsi_responsive_icons_after_post\";s:3:\"yes\";s:44:\"sfsi_responsive_icons_after_post_on_taxonomy\";s:2:\"no\";s:33:\"sfsi_responsive_icons_after_pages\";s:2:\"no\";s:34:\"sfsi_display_after_woocomerce_desc\";s:2:\"no\";s:15:\"sfsi_make_icons\";s:5:\"float\";s:20:\"sfsi_float_alignment\";s:10:\"Horizontal\";s:27:\"sfsi_float_mobile_selection\";s:2:\"no\";s:15:\"sfsi_sticky_bar\";s:2:\"no\";s:17:\"sfsi_sticky_icons\";a:2:{s:13:\"default_icons\";a:4:{s:8:\"facebook\";a:2:{s:6:\"active\";s:3:\"yes\";s:3:\"url\";s:0:\"\";}s:7:\"Twitter\";a:2:{s:6:\"active\";s:3:\"yes\";s:3:\"url\";s:0:\"\";}s:6:\"Follow\";a:2:{s:6:\"active\";s:3:\"yes\";s:3:\"url\";s:0:\"\";}s:9:\"Pinterest\";a:2:{s:6:\"active\";s:2:\"no\";s:3:\"url\";s:0:\"\";}}s:8:\"settings\";a:8:{s:7:\"desktop\";s:2:\"no\";s:13:\"desktop_width\";i:782;s:17:\"desktop_placement\";s:4:\"left\";s:16:\"display_position\";i:0;s:27:\"desktop_placement_direction\";s:2:\"up\";s:6:\"mobile\";s:2:\"no\";s:12:\"mobile_width\";i:784;s:16:\"mobile_placement\";s:4:\"left\";}}}\";','yes'),(205,'sfsi_feed_id','bTA3M0R3UldZOVJRd2tJQXZINWpJVXVXNnpYUlU0ZGVWRTdrTjJ0SVJveU56QkNBK2xJYmpHV1FKTnBSdDZLNW43UnNnUmY5NW9pS0ZNQjRTU3htSGo5ZTcxVHcwU2EreXRsT2dkNW4yZHhzQStJL2hNNG5iNHJsZFBMZ1Z2SW18OVVGdWg3OVVXeXR0L3Qvd1VEdjBsRG55cVBwcmZoY0lTT0tyWjJlZ0JSWT0=','yes'),(206,'sfsi_redirect_url','https://follow.it/activistaspse?action=followPub','yes'),(207,'sfsi_installDate','2020-06-19 05:54:18','yes'),(208,'sfsi_currentDate','2020-06-19 05:54:18','yes'),(209,'sfsi_showNextBannerDate','14 day','yes'),(210,'sfsi_cycleDate','180 day','yes'),(211,'sfsi_loyaltyDate','180 day','yes'),(212,'sfsi_RatingDiv','no','yes'),(213,'sfsi_footer_sec','no','yes'),(214,'sfsi_activate','0','yes'),(215,'sfsi_dismiss_sharecount','s:58:\"a:2:{s:11:\"show_banner\";s:3:\"yes\";s:9:\"timestamp\";s:0:\"\";}\";','yes'),(216,'sfsi_dismiss_google_analytic','s:58:\"a:2:{s:11:\"show_banner\";s:3:\"yes\";s:9:\"timestamp\";s:0:\"\";}\";','yes'),(217,'sfsi_banner_global_firsttime_offer','s:104:\"a:3:{s:12:\"met_criteria\";s:3:\"yes\";s:9:\"is_active\";s:2:\"no\";s:9:\"timestamp\";s:19:\"2020-06-19 08:08:17\";}\";','yes'),(218,'sfsi_dismiss_gdpr','s:58:\"a:2:{s:11:\"show_banner\";s:3:\"yes\";s:9:\"timestamp\";s:0:\"\";}\";','yes'),(219,'sfsi_dismiss_optimization','s:58:\"a:2:{s:11:\"show_banner\";s:3:\"yes\";s:9:\"timestamp\";s:0:\"\";}\";','yes'),(220,'sfsi_dismiss_gallery','s:58:\"a:2:{s:11:\"show_banner\";s:3:\"yes\";s:9:\"timestamp\";s:0:\"\";}\";','yes'),(221,'sfsi_banner_global_upgrade','s:115:\"a:4:{s:12:\"met_criteria\";s:2:\"no\";s:15:\"banner_appeared\";s:2:\"no\";s:9:\"is_active\";s:2:\"no\";s:9:\"timestamp\";s:0:\"\";}\";','yes'),(222,'sfsi_banner_global_http','s:115:\"a:4:{s:12:\"met_criteria\";s:2:\"no\";s:15:\"banner_appeared\";s:2:\"no\";s:9:\"is_active\";s:2:\"no\";s:9:\"timestamp\";s:0:\"\";}\";','yes'),(223,'sfsi_banner_global_gdpr','s:115:\"a:4:{s:12:\"met_criteria\";s:2:\"no\";s:15:\"banner_appeared\";s:2:\"no\";s:9:\"is_active\";s:2:\"no\";s:9:\"timestamp\";s:0:\"\";}\";','yes'),(224,'sfsi_banner_global_shares','s:137:\"a:4:{s:12:\"met_criteria\";s:2:\"no\";s:15:\"banner_appeared\";s:3:\"yes\";s:9:\"is_active\";s:3:\"yes\";s:9:\"timestamp\";s:19:\"2020-07-10 08:08:17\";}\";','yes'),(225,'sfsi_banner_global_load_faster','s:115:\"a:4:{s:12:\"met_criteria\";s:2:\"no\";s:15:\"banner_appeared\";s:2:\"no\";s:9:\"is_active\";s:2:\"no\";s:9:\"timestamp\";s:0:\"\";}\";','yes'),(226,'sfsi_banner_global_social','s:115:\"a:4:{s:12:\"met_criteria\";s:2:\"no\";s:15:\"banner_appeared\";s:2:\"no\";s:9:\"is_active\";s:2:\"no\";s:9:\"timestamp\";s:0:\"\";}\";','yes'),(227,'sfsi_banner_global_pinterest','s:115:\"a:4:{s:12:\"met_criteria\";s:2:\"no\";s:15:\"banner_appeared\";s:2:\"no\";s:9:\"is_active\";s:2:\"no\";s:9:\"timestamp\";s:0:\"\";}\";','yes'),(228,'sfsi_instagram_sf_count','s:116:\"a:4:{s:7:\"date_sf\";s:0:\"\";s:14:\"date_instagram\";s:0:\"\";s:13:\"sfsi_sf_count\";i:0;s:20:\"sfsi_instagram_count\";s:0:\"\";}\";','yes'),(229,'sfsi_error_reporting_notice_dismissed','1','yes'),(230,'adding_tags','yes','yes'),(231,'widget_sfsi-widget','a:3:{i:2;a:2:{s:5:\"showf\";i:1;s:5:\"title\";s:13:\"Please follow\";}i:3;a:2:{s:5:\"showf\";i:1;s:5:\"title\";s:21:\"Please follow & Share\";}s:12:\"_multiwidget\";i:1;}','yes'),(232,'widget_subscriber_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(233,'sfsi_pluginVersion','2.75','yes'),(234,'sfsi_serverphpVersionnotification','yes','yes'),(235,'show_premium_notification','yes','yes'),(236,'show_notification','yes','yes'),(237,'sfsi_pplus_error_reporting_notice_dismissed','1','yes'),(238,'sfsi_addThis_icon_removal_notice_dismissed','1','yes'),(239,'sfsi_verificatiom_code','y25Uzyae2Vzd5APdHWDP','yes'),(256,'theme_mods_bloggers-magazinely','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1592557493;s:4:\"data\";a:6:{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:13:\"header-widget\";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:17:\"footer-widget-one\";a:0:{}s:17:\"footer-widget-two\";a:0:{}s:19:\"footer-widget-three\";a:0:{}}}}','yes'),(257,'theme_switched','','yes'),(264,'theme_mods_photo-journal','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1592557709;s:4:\"data\";a:5:{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: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:{}s:9:\"sidebar-4\";a:0:{}}}}','yes'),(265,'widget_ct-social','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(270,'theme_mods_business-shuffle','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1592557758;s:4:\"data\";a:6:{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:30:\"business-shuffle-right-sidebar\";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:24:\"business-shuffle-footer1\";a:0:{}s:24:\"business-shuffle-footer2\";a:0:{}s:24:\"business-shuffle-footer3\";a:0:{}s:24:\"business-shuffle-footer4\";a:0:{}}}}','yes'),(271,'widget_business_shuffle_contact_info','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(272,'widget_business_shuffle_personal_info','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(273,'widget_business_shuffle_latest_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(278,'theme_mods_photoway','a:9:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:7;}s:18:\"custom_css_post_id\";i:33;s:11:\"footer_text\";s:18:\"Copyright © 2020.\";s:12:\"header_image\";s:65:\"http://activistaspse.net/wp-content/uploads/2020/06/cropped-1.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:52;s:3:\"url\";s:65:\"http://activistaspse.net/wp-content/uploads/2020/06/cropped-1.jpg\";s:13:\"thumbnail_url\";s:65:\"http://activistaspse.net/wp-content/uploads/2020/06/cropped-1.jpg\";s:6:\"height\";i:378;s:5:\"width\";i:1920;}s:15:\"home_page_image\";i:54;s:17:\"blog_posts_number\";s:2:\"10\";s:18:\"archive_page_title\";s:65:\"However low a man sinks he never reaches the level of the police.\";}','yes'),(279,'widget_photoway_author_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(280,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(283,'theme_editor_email_verified_1','yes','yes'),(290,'wpautoterms_activated','1','yes'),(291,'wpautoterms_legal_pages_slug','wpautoterms','yes'),(292,'wpautoterms_version','2.4.9','yes'),(293,'widget_wpautoterms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(294,'wpautoterms_links','1','yes'),(295,'wpautoterms_links_bg_color','#ffffff','yes'),(296,'wpautoterms_links_font','Arial, sans-serif','yes'),(297,'wpautoterms_links_font_size','14px','yes'),(298,'wpautoterms_links_text_color','#cccccc','yes'),(299,'wpautoterms_links_text_align','center','yes'),(300,'wpautoterms_links_links_color','#000000','yes'),(301,'wpautoterms_links_separator','-','yes'),(302,'wpautoterms_links_target_blank','','yes'),(303,'wpautoterms_update_notice','','yes'),(304,'wpautoterms_update_notice_bar_position','top','yes'),(305,'wpautoterms_update_notice_bar_type','static','yes'),(306,'wpautoterms_update_notice_disable_logged','yes','yes'),(307,'wpautoterms_update_notice_duration','3','yes'),(308,'wpautoterms_update_notice_message','Our <a href=\"[wpautoterms page_link]\">[wpautoterms page_title]</a> has been updated on [wpautoterms last_updated_date].','yes'),(309,'wpautoterms_update_notice_message_multiple','Our [wpautoterms page_links] have been updated on [wpautoterms last_updated_date].','yes'),(310,'wpautoterms_update_notice_close_message','Close','yes'),(311,'wpautoterms_update_notice_bg_color','','yes'),(312,'wpautoterms_update_notice_font','','yes'),(313,'wpautoterms_update_notice_font_size','','yes'),(314,'wpautoterms_update_notice_text_color','','yes'),(315,'wpautoterms_update_notice_links_color','','yes'),(316,'wpautoterms_cookies_notice','','yes'),(317,'wpautoterms_cookies_notice_bar_position','top','yes'),(318,'wpautoterms_cookies_notice_bar_type','static','yes'),(319,'wpautoterms_cookies_notice_disable_logged','yes','yes'),(320,'wpautoterms_cookies_notice_message','We use cookies to ensure that we give you the best experience on our website','yes'),(321,'wpautoterms_cookies_notice_close_message','Close','yes'),(322,'wpautoterms_cookies_notice_bg_color','','yes'),(323,'wpautoterms_cookies_notice_font','','yes'),(324,'wpautoterms_cookies_notice_font_size','','yes'),(325,'wpautoterms_cookies_notice_text_color','','yes'),(326,'wpautoterms_cookies_notice_links_color','','yes'),(327,'wpautoterms_endorsements','','yes'),(328,'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'),(329,'wpautoterms_endorsements_when','','yes'),(330,'wpautoterms_endorsements_tag','','yes'),(331,'wpautoterms_site_name','ACTIVISTAS PSE','yes'),(332,'wpautoterms_site_url','http://activistaspse.net','yes'),(333,'wpautoterms_company_name','ACTIVISTAS PSE','yes'),(334,'wpautoterms_country','','yes'),(335,'wpautoterms_state','','yes'),(336,'wpautoterms_show_in_pages_widget','','yes'),(337,'wpautoterms_cache_plugins_compat','','yes'),(338,'wpautoterms_license','','yes'),(343,'wpautoterms_ob_total','1','yes'),(344,'wpautoterms_ob_not_intercepted','0','yes'),(349,'ssb_networks','a:1:{s:14:\"icon_selection\";s:31:\"fbshare,twitter,linkedin,reddit\";}','yes'),(350,'ssb_themes','a:1:{s:10:\"icon_style\";s:9:\"round-txt\";}','yes'),(351,'ssb_positions','a:1:{s:8:\"position\";a:2:{s:7:\"sidebar\";s:7:\"sidebar\";s:6:\"inline\";s:6:\"inline\";}}','yes'),(352,'ssb_inline','a:14:{s:8:\"location\";s:5:\"below\";s:14:\"icon_alignment\";s:4:\"left\";s:9:\"animation\";s:12:\"no-animation\";s:12:\"share_counts\";s:1:\"0\";s:11:\"total_share\";s:1:\"0\";s:10:\"icon_space\";s:1:\"0\";s:16:\"icon_space_value\";s:0:\"\";s:11:\"hide_mobile\";s:1:\"0\";s:16:\"show_on_category\";s:1:\"0\";s:15:\"show_on_archive\";s:1:\"0\";s:11:\"show_on_tag\";s:1:\"0\";s:14:\"show_on_search\";s:1:\"0\";s:11:\"share_title\";s:0:\"\";s:5:\"posts\";a:2:{s:4:\"home\";s:4:\"home\";s:4:\"post\";s:4:\"post\";}}','yes'),(353,'ssb_advanced','a:1:{s:11:\"ssb_og_tags\";s:1:\"1\";}','yes'),(354,'ssb_pr_version','3.1.1','yes'),(355,'wpautoterms_cache_plugins_detection','','yes'),(356,'widget_ssb_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(357,'ssb_sidebar','a:8:{s:11:\"orientation\";s:4:\"left\";s:9:\"animation\";s:12:\"no-animation\";s:12:\"share_counts\";s:1:\"0\";s:11:\"total_share\";s:1:\"0\";s:10:\"icon_space\";s:1:\"0\";s:16:\"icon_space_value\";s:0:\"\";s:11:\"hide_mobile\";s:1:\"0\";s:5:\"posts\";a:2:{s:4:\"home\";s:4:\"home\";s:4:\"post\";s:4:\"post\";}}','yes'),(358,'ssb_media','','yes'),(359,'ssb_popup','','yes'),(360,'ssb_flyin','','yes'),(361,'ssb_active_time','1592563608','no'),(362,'wpautoterms_cache_plugins_detected','1','yes'),(380,'Niteoweb.SpiderBlocker.Bots','a:39:{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:5:\"state\";b:1;s:2:\"re\";s:11:\"Baiduspider\";s:4:\"name\";s:5:\"Baidu\";s:4:\"desc\";s:47:\"http://www.baidu.com/search/robots_english.html\";}i:37;a:4:{s:5:\"state\";b:1;s:2:\"re\";s:8:\"serpstat\";s:4:\"name\";s:8:\"Serpstat\";s:4:\"desc\";s:21:\"https://serpstat.com/\";}i:38;a:4:{s:5:\"state\";b:1;s:4:\"desc\";s:22:\"https://www.spyfu.com/\";s:2:\"re\";s:5:\"spyfu\";s:4:\"name\";s:5:\"SpyFu\";}}','yes'),(383,'category_children','a:0:{}','yes'),(564,'recovery_keys','a:0:{}','yes'),(576,'action_scheduler_migration_status','complete','yes'),(634,'mainwp_child_update_version','1.5','yes'),(635,'mainwp_child_plugin_version','4.2.3','yes'),(636,'mainwp_child_auth','a:7:{i:5;s:32:\"2dedc4bab2cdf54cd9324592bfd44ff0\";s:4:\"last\";i:1677751540;i:4;s:32:\"a502cdad9fc6edfd590f4ca2eb5f0fe7\";i:3;s:32:\"03099df4e1499b36c8d3d08c644a8a61\";i:2;s:32:\"d0e327426b8f2a10a95eef0116a967fb\";i:1;s:32:\"14685f1baf01f0799a5917a3cee147b2\";i:0;s:32:\"94ed16ff71a7cd00ded1a72dca8d9c9b\";}','yes'),(637,'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'),(638,'mainwp_child_activated_once','1','no'),(639,'mainwp_child_pubkey','LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUFtMGc0eFZRZUJ4dDZ1b05JQXp3TApTdkNSUm8xZ3dvNjA1aG1KTVFaWkpQSXJlNmhrOGM5QXBsRUYzRFZrWExYV21qYnd1K2lJVVBiNEwzd0JhRGZBCnFvR2h5WWxzaERzbWFPeFpMOUJIMUZnRjZmQXlXTkpHUjVwNlZnR21MTG5uVnpGcHRFY3d1STFMK2R2YkNQVTMKOC9ITCtaSFkxWmthdlBHdTlQUU5mRHROdWhid3I0NTVXdzZleDVyZWZmQWt1UnI5Qk9qOXRDS1NCNTMxNThSWQoxUmw1cXVmd2VQU3ovMEVPY1JwcTMxbmFoenBQUEU2anN4RXBVVExTMExrckI0dGY2Mno5U2RTQU4wWW9rOVUxCmp4cVlzcGxkVXNTODdSVnlYY29ETjBnTGxxNFBKNkJqQlJtK2V1QklXTjBrZ1ROeDlIa1ZWZENNcldJeiszdFQKendJREFRQUIKLS0tLS1FTkQgUFVCTElDIEtFWS0tLS0tCg==','yes'),(640,'mainwp_child_server','https://dashboard.comparrot.nl/wp-admin/','no'),(641,'mainwp_child_nonce','0','no'),(642,'mainwp_child_nossl','0','yes'),(643,'mainwp_child_nossl_key','fd8fa56c70e439c4645f13b26510140142b99e2e879b7dc6a6feb5ee64aab2be','yes'),(644,'mainwp_premium_updates','a:0:{}','no'),(645,'mainwp_child_clone_sites','0','no'),(646,'mainwp_child_siteid','1210','no'),(656,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:22:\"[email protected]\";s:7:\"version\";s:3:\"6.0\";s:9:\"timestamp\";i:1653472406;}','no'),(663,'sfsi_dismiss_woocommerce','s:58:\"a:2:{s:11:\"show_banner\";s:3:\"yes\";s:9:\"timestamp\";s:0:\"\";}\";','yes'),(664,'sfsi_dismiss_twitter','s:58:\"a:2:{s:11:\"show_banner\";s:3:\"yes\";s:9:\"timestamp\";s:0:\"\";}\";','yes'),(665,'sfsi_dismiss_copy_delete_post','s:58:\"a:2:{s:11:\"show_banner\";s:3:\"yes\";s:9:\"timestamp\";s:0:\"\";}\";','yes'),(666,'sfsi_banner_popups','yes','yes'),(667,'sfsi_new_intro_banner_hide_option','s:86:\"a:2:{s:20:\"sfsi_display_section\";s:4:\"true\";s:21:\"sfsi_display_section2\";s:5:\"false\";}\";','yes'),(668,'sfsi_fb_count','','yes'),(670,'https_detection_errors','a:1:{s:20:\"https_request_failed\";a:1:{i:0;s:21:\"HTTPS request failed.\";}}','yes'),(680,'finished_updating_comment_type','1','yes'),(870,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(979,'disallowed_keys','','no'),(980,'comment_previously_approved','1','yes'),(981,'auto_plugin_theme_update_emails','a:0:{}','no'),(982,'auto_update_core_dev','enabled','yes'),(983,'auto_update_core_minor','enabled','yes'),(984,'auto_update_core_major','unset','yes'),(985,'wp_force_deactivated_plugins','a:0:{}','yes'),(986,'db_upgraded','','yes'),(16602,'mainwp_cache_control_cache_solution','Cache Enabler','yes'),(30819,'ai1wm_secret_key','mEJxxkLq7ujm','yes'),(30820,'ai1wm_backups_labels','a:0:{}','yes'),(30821,'ai1wm_sites_links','a:0:{}','yes'),(30822,'swift_performance_plugin_organizer','a:0:{}','yes'),(30823,'jetpack_active_modules','a:0:{}','yes'),(30824,'_transient_doing_cron','1660729456.3188190460205078125000','yes'),(30826,'_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:1676617946;s:15:\"version_checked\";s:3:\"6.0\";s:12:\"translations\";a:0:{}}','no'),(30830,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1676617948;s:7:\"checked\";a:8:{s:19:\"bloggers-magazinely\";s:3:\"1.5\";s:16:\"business-shuffle\";s:5:\"1.0.6\";s:10:\"magazinely\";s:3:\"3.5\";s:13:\"photo-journal\";s:3:\"1.3\";s:8:\"photoway\";s:5:\"1.1.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:6:{s:19:\"bloggers-magazinely\";a:6:{s:5:\"theme\";s:19:\"bloggers-magazinely\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:49:\"https://wordpress.org/themes/bloggers-magazinely/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/theme/bloggers-magazinely.1.9.zip\";s:8:\"requires\";s:3:\"4.0\";s:12:\"requires_php\";s:3:\"4.0\";}s:10:\"magazinely\";a:6:{s:5:\"theme\";s:10:\"magazinely\";s:11:\"new_version\";s:3:\"4.3\";s:3:\"url\";s:40:\"https://wordpress.org/themes/magazinely/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/magazinely.4.3.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"4.0\";}s:13:\"photo-journal\";a:6:{s:5:\"theme\";s:13:\"photo-journal\";s:11:\"new_version\";s:5:\"1.4.3\";s:3:\"url\";s:43:\"https://wordpress.org/themes/photo-journal/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/photo-journal.1.4.3.zip\";s:8:\"requires\";s:3:\"5.6\";s:12:\"requires_php\";s:3:\"5.6\";}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:2:{s:16:\"business-shuffle\";a:6:{s:5:\"theme\";s:16:\"business-shuffle\";s:11:\"new_version\";s:5:\"1.0.6\";s:3:\"url\";s:46:\"https://wordpress.org/themes/business-shuffle/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/theme/business-shuffle.1.0.6.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.2\";}s:8:\"photoway\";a:6:{s:5:\"theme\";s:8:\"photoway\";s:11:\"new_version\";s:5:\"1.1.0\";s:3:\"url\";s:38:\"https://wordpress.org/themes/photoway/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/photoway.1.1.0.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.5\";}}s:12:\"translations\";a:0:{}}','no'),(30831,'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'),(30835,'wpil_2_license_status','','yes'),(30836,'wpil_2_license_key','','yes'),(30837,'wpil_2_license_data','','yes'),(30838,'wpil_2_ignore_numbers','1','yes'),(30839,'wpil_2_post_types','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(30840,'wpil_2_links_open_new_tab','0','yes'),(30841,'wpil_2_debug_mode','0','yes'),(30842,'wpil_option_update_reporting_data_on_save','0','yes'),(30843,'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'),(30844,'wpil_has_run_initial_scan','1','yes'),(30845,'wpil_site_db_version','1.22','yes'),(30846,'wpil_link_table_is_created','1','yes'),(30847,'wpil_fresh_install','','yes'),(30848,'wpil_install_date','2023-02-16 09:52:24','yes'),(30851,'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:1676541146;s:11:\"plugin_path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}}s:7:\"abspath\";s:35:\"/opt/aphex/sites/activistaspse.net/\";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:1676541146;}}','yes'),(30852,'fs_debug_mode','','yes'),(30853,'fs_accounts','a:4:{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:11:{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:1676541146;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: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:1;}}}','yes'),(30863,'_site_transient_timeout_theme_roots','1676619746','no'),(30864,'_site_transient_theme_roots','a:8:{s:19:\"bloggers-magazinely\";s:7:\"/themes\";s:16:\"business-shuffle\";s:7:\"/themes\";s:10:\"magazinely\";s:7:\"/themes\";s:13:\"photo-journal\";s:7:\"/themes\";s:8:\"photoway\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(30866,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1676617948;s:8:\"response\";a:8:{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:5:\"5.0.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.0.2.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.70\";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.70.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:5:\"6.1.1\";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:5:\"4.3.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/mainwp-child/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/mainwp-child.4.3.1.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.0\";}s:47:\"simple-social-buttons/simple-social-buttons.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:35:\"w.org/plugins/simple-social-buttons\";s:4:\"slug\";s:21:\"simple-social-buttons\";s:6:\"plugin\";s:47:\"simple-social-buttons/simple-social-buttons.php\";s:11:\"new_version\";s:5:\"4.0.3\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/simple-social-buttons/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/simple-social-buttons.4.0.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/simple-social-buttons/assets/icon-256x256.png?rev=2439696\";s:2:\"1x\";s:74:\"https://ps.w.org/simple-social-buttons/assets/icon-128x128.png?rev=2439696\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/simple-social-buttons/assets/banner-1544x500.png?rev=2439696\";s:2:\"1x\";s:76:\"https://ps.w.org/simple-social-buttons/assets/banner-772x250.png?rev=2439696\";}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:14:\"upgrade_notice\";s:47:\"<ul>\n<li>Please upgrade immediately.</li>\n</ul>\";}s:59:\"ultimate-social-media-icons/ultimate_social_media_icons.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:41:\"w.org/plugins/ultimate-social-media-icons\";s:4:\"slug\";s:27:\"ultimate-social-media-icons\";s:6:\"plugin\";s:59:\"ultimate-social-media-icons/ultimate_social_media_icons.php\";s:11:\"new_version\";s:5:\"2.8.0\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/ultimate-social-media-icons/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/ultimate-social-media-icons.2.8.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:80:\"https://ps.w.org/ultimate-social-media-icons/assets/icon-128x128.gif?rev=2569754\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/ultimate-social-media-icons/assets/banner-1544x500.png?rev=2388690\";s:2:\"1x\";s:82:\"https://ps.w.org/ultimate-social-media-icons/assets/banner-772x250.png?rev=2421625\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.5\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";b:0;s:14:\"upgrade_notice\";s:141:\"<ul>\n<li>Added black-friday theme (only for that period)</li>\n<li>Tested up to WordPress 6.1.1</li>\n<li>Adjusted PHP compatibility</li>\n</ul>\";}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:\"wpforms-lite/wpforms.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/wpforms-lite\";s:4:\"slug\";s:12:\"wpforms-lite\";s:6:\"plugin\";s:24:\"wpforms-lite/wpforms.php\";s:11:\"new_version\";s:7:\"1.8.0.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wpforms-lite/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wpforms-lite.1.8.0.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:65:\"https://ps.w.org/wpforms-lite/assets/icon-256x256.png?rev=2574201\";s:2:\"1x\";s:57:\"https://ps.w.org/wpforms-lite/assets/icon.svg?rev=2574198\";s:3:\"svg\";s:57:\"https://ps.w.org/wpforms-lite/assets/icon.svg?rev=2574198\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wpforms-lite/assets/banner-1544x500.png?rev=2602491\";s:2:\"1x\";s:67:\"https://ps.w.org/wpforms-lite/assets/banner-772x250.png?rev=2602491\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/wpforms-lite/assets/banner-1544x500-rtl.png?rev=2602491\";s:2:\"1x\";s:71:\"https://ps.w.org/wpforms-lite/assets/banner-772x250-rtl.png?rev=2602491\";}s:8:\"requires\";s:3:\"5.2\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:5:{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:75:\"recent-posts-widget-with-thumbnails/recent-posts-widget-with-thumbnails.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:49:\"w.org/plugins/recent-posts-widget-with-thumbnails\";s:4:\"slug\";s:35:\"recent-posts-widget-with-thumbnails\";s:6:\"plugin\";s:75:\"recent-posts-widget-with-thumbnails/recent-posts-widget-with-thumbnails.php\";s:11:\"new_version\";s:5:\"7.1.1\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/recent-posts-widget-with-thumbnails/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/recent-posts-widget-with-thumbnails.7.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/recent-posts-widget-with-thumbnails/assets/icon-256x256.png?rev=2478511\";s:2:\"1x\";s:88:\"https://ps.w.org/recent-posts-widget-with-thumbnails/assets/icon-128x128.png?rev=2478511\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/recent-posts-widget-with-thumbnails/assets/banner-1544x500.jpg?rev=2480188\";s:2:\"1x\";s:90:\"https://ps.w.org/recent-posts-widget-with-thumbnails/assets/banner-772x250.jpg?rev=2480188\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";O:8:\"stdClass\":10:{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.0\";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: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\";}}}','no'),(30867,'user_count','1','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=184 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 (8,8,'_edit_lock','1592555882:1'),(9,9,'_wp_attached_file','2020/06/1.jpg'),(10,9,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2508;s:6:\"height\";i:1672;s:4:\"file\";s:13:\"2020/06/1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"1-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:14:\"1-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:13:\"1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"1-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:15:\"1-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:15:\"1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"post-image\";a:4:{s:4:\"file\";s:14:\"1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"thumbnail-square\";a:4:{s:4:\"file\";s:13:\"1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13,8,'_thumbnail_id','9'),(14,8,'_edit_last','1'),(16,12,'_edit_lock','1592556396:1'),(17,13,'_wp_attached_file','2020/06/2.jpg'),(18,13,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:13:\"2020/06/2.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"2-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:14:\"2-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:13:\"2-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:13:\"2-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:15:\"2-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:15:\"2-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"post-image\";a:4:{s:4:\"file\";s:14:\"2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"thumbnail-square\";a:4:{s:4:\"file\";s:13:\"2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21,12,'_thumbnail_id','13'),(22,12,'_edit_last','1'),(25,16,'_edit_lock','1592560062:1'),(26,16,'_edit_last','1'),(27,18,'_edit_lock','1592558040:1'),(28,18,'_edit_last','1'),(29,20,'_edit_lock','1592560251:1'),(30,20,'_edit_last','1'),(31,22,'_edit_lock','1592560531:1'),(32,22,'_edit_last','1'),(33,24,'_edit_lock','1592558126:1'),(34,24,'_edit_last','1'),(35,26,'_menu_item_type','custom'),(36,26,'_menu_item_menu_item_parent','0'),(37,26,'_menu_item_object_id','26'),(38,26,'_menu_item_object','custom'),(39,26,'_menu_item_target',''),(40,26,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(41,26,'_menu_item_xfn',''),(42,26,'_menu_item_url','http://activistaspse.net/'),(44,27,'_menu_item_type','post_type'),(45,27,'_menu_item_menu_item_parent','0'),(46,27,'_menu_item_object_id','18'),(47,27,'_menu_item_object','page'),(48,27,'_menu_item_target',''),(49,27,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50,27,'_menu_item_xfn',''),(51,27,'_menu_item_url',''),(53,28,'_menu_item_type','post_type'),(54,28,'_menu_item_menu_item_parent','0'),(55,28,'_menu_item_object_id','24'),(56,28,'_menu_item_object','page'),(57,28,'_menu_item_target',''),(58,28,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(59,28,'_menu_item_xfn',''),(60,28,'_menu_item_url',''),(62,29,'_menu_item_type','post_type'),(63,29,'_menu_item_menu_item_parent','0'),(64,29,'_menu_item_object_id','20'),(65,29,'_menu_item_object','page'),(66,29,'_menu_item_target',''),(67,29,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(68,29,'_menu_item_xfn',''),(69,29,'_menu_item_url',''),(71,30,'_menu_item_type','post_type'),(72,30,'_menu_item_menu_item_parent','0'),(73,30,'_menu_item_object_id','16'),(74,30,'_menu_item_object','page'),(75,30,'_menu_item_target',''),(76,30,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(77,30,'_menu_item_xfn',''),(78,30,'_menu_item_url',''),(80,31,'_menu_item_type','post_type'),(81,31,'_menu_item_menu_item_parent','0'),(82,31,'_menu_item_object_id','22'),(83,31,'_menu_item_object','page'),(84,31,'_menu_item_target',''),(85,31,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(86,31,'_menu_item_xfn',''),(87,31,'_menu_item_url',''),(108,50,'_wp_attached_file','2020/06/cropped-2.jpg'),(109,50,'_wp_attachment_context','custom-header'),(110,50,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:21:\"2020/06/cropped-2.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"cropped-2-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:22:\"cropped-2-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:21:\"cropped-2-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:21:\"cropped-2-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:23:\"cropped-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"photoway-1200-1600\";a:4:{s:4:\"file\";s:23:\"cropped-2-1200x1280.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"photoway-1920-750\";a:4:{s:4:\"file\";s:22:\"cropped-2-1920x750.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"photoway-1920-850\";a:4:{s:4:\"file\";s:22:\"cropped-2-1920x850.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:850;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:13;}'),(115,52,'_wp_attached_file','2020/06/cropped-1.jpg'),(116,52,'_wp_attachment_context','custom-header'),(117,52,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:378;s:4:\"file\";s:21:\"2020/06/cropped-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"cropped-1-300x59.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:59;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"cropped-1-1024x202.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"cropped-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"cropped-1-768x151.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"cropped-1-1536x302.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:302;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"photoway-1200-1600\";a:4:{s:4:\"file\";s:22:\"cropped-1-1200x378.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:378;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:9;}'),(118,52,'_wp_attachment_custom_header_last_used_photoway','1592560827'),(119,52,'_wp_attachment_is_custom_header','photoway'),(121,54,'_wp_attached_file','2020/06/cropped-2-1.jpg'),(122,54,'_wp_attachment_context','home-page-image'),(123,54,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:650;s:4:\"file\";s:23:\"2020/06/cropped-2-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"cropped-2-1-300x102.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:102;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"cropped-2-1-1024x347.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:347;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"cropped-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"cropped-2-1-768x260.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"cropped-2-1-1536x520.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"photoway-1200-1600\";a:4:{s:4:\"file\";s:24:\"cropped-2-1-1200x650.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:650;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:{}}}'),(130,57,'_wp_attached_file','2020/06/3-e1592563136645.jpg'),(131,57,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1218;s:4:\"file\";s:28:\"2020/06/3-e1592563136645.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"3-e1592563136645-300x178.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"3-e1592563136645-1024x609.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:609;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"3-e1592563136645-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:28:\"3-e1592563136645-768x457.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:457;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"3-e1592563136645-1536x914.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:914;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"photoway-1200-1600\";a:4:{s:4:\"file\";s:30:\"3-e1592563136645-1200x1218.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1218;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"photoway-1920-750\";a:4:{s:4:\"file\";s:29:\"3-e1592563136645-1920x750.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"photoway-1920-850\";a:4:{s:4:\"file\";s:29:\"3-e1592563136645-1920x850.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:850;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:{}}}'),(132,57,'_wp_attachment_backup_sizes','a:18:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:5:\"3.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:13:\"3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:13:\"3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:13:\"3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:14:\"3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"1536x1536-orig\";a:4:{s:4:\"file\";s:15:\"3-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"photoway-1200-1600-orig\";a:4:{s:4:\"file\";s:15:\"3-1200x1365.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"photoway-1920-750-orig\";a:4:{s:4:\"file\";s:14:\"3-1920x750.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"photoway-1920-850-orig\";a:4:{s:4:\"file\";s:14:\"3-1920x850.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:850;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1592563136645\";a:3:{s:5:\"width\";i:2048;s:6:\"height\";i:1264;s:4:\"file\";s:20:\"3-e1592562947369.jpg\";}s:23:\"thumbnail-1592563136645\";a:4:{s:4:\"file\";s:28:\"3-e1592562947369-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"medium-1592563136645\";a:4:{s:4:\"file\";s:28:\"3-e1592562947369-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"medium_large-1592563136645\";a:4:{s:4:\"file\";s:28:\"3-e1592562947369-768x474.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:474;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"large-1592563136645\";a:4:{s:4:\"file\";s:29:\"3-e1592562947369-1024x632.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:632;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"1536x1536-1592563136645\";a:4:{s:4:\"file\";s:29:\"3-e1592562947369-1536x948.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:948;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"photoway-1200-1600-1592563136645\";a:4:{s:4:\"file\";s:30:\"3-e1592562947369-1200x1264.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"photoway-1920-750-1592563136645\";a:4:{s:4:\"file\";s:29:\"3-e1592562947369-1920x750.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"photoway-1920-850-1592563136645\";a:4:{s:4:\"file\";s:29:\"3-e1592562947369-1920x850.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:850;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(141,20,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(142,20,'ssb_total_counts','0'),(143,20,'ssb_cache_timestamp','442378'),(144,66,'_edit_last','1'),(145,66,'_edit_lock','1592587148:1'),(146,67,'_wp_attached_file','2020/06/boka9js.jpg'),(147,67,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:910;s:6:\"height\";i:443;s:4:\"file\";s:19:\"2020/06/boka9js.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"boka9js-300x146.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"boka9js-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:19:\"boka9js-768x374.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:374;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:{}}}'),(148,66,'_thumbnail_id','67'),(149,66,'_ssb_hide','false'),(150,69,'_wp_attached_file','2020/06/cropped-3-e1592563136645.jpg'),(151,69,'_wp_attachment_context','site-icon'),(152,69,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:36:\"2020/06/cropped-3-e1592563136645.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"cropped-3-e1592563136645-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"cropped-3-e1592563136645-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:36:\"cropped-3-e1592563136645-270x270.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:36:\"cropped-3-e1592563136645-192x192.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:36:\"cropped-3-e1592563136645-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:34:\"cropped-3-e1592563136645-32x32.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(156,71,'_edit_last','1'),(157,71,'_edit_lock','1592587131:1'),(158,72,'_wp_attached_file','2020/06/b92k2m1.jpg'),(159,72,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:320;s:4:\"file\";s:19:\"2020/06/b92k2m1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"b92k2m1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"b92k2m1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(160,71,'_thumbnail_id','72'),(161,71,'_ssb_hide','false'),(162,39,'wpforms_entries_count','18'),(163,8,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(164,8,'ssb_total_counts','0'),(165,8,'ssb_cache_timestamp','458700'),(170,66,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(171,66,'ssb_total_counts','0'),(172,66,'ssb_cache_timestamp','449687'),(173,12,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(174,12,'ssb_total_counts','0'),(175,12,'ssb_cache_timestamp','457275'),(176,71,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(177,71,'ssb_total_counts','0'),(178,71,'ssb_cache_timestamp','449687'),(179,54,'_oembed_5871728d4f3428364fe8e0e6b3a450e1','{{unknown}}'),(180,37,'wpforms_entries_count','1'),(181,69,'_oembed_462af52af6dc3fe093c4db6b487c24da','{{unknown}}');
/*!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=76 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 (8,1,'2020-06-19 08:37:57','2020-06-19 08:37:57','<!-- wp:paragraph -->\n<p>In the event that you are experiencing a separation and have kids or are engaged with an authority fight you presumably need to know where you can get care law data and legitimate guidance to assist you with your circumstance. There are numerous assets accessible for getting youngster care law data legitimate counsel however you have to realize where to look. It is additionally essential to recognize care data, law and lawful exhortation. Data is unique in relation to law and isn\'t really legitimate counsel. Data is useful in increasing a comprehension of the topic and can assist you with settling on progressively educated decisions. By being educated about kid care you\'ll have the option to associate better with those engaged with your case and have a superior comprehension of what a lawyer is discussing when he/she presents you with lawful exhortation and your lawful alternatives dependent on the realities of your particular case.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a huge amount of guardianship data on the web and regularly numerous assets accessible that can help you at your neighborhood town hall and likely in your neighborhood. A large portion of the data you may go over on the web, at the town hall, or by means of self improvement habitats are for enlightening purposes just and not legitimate counsel. Quality data can be incredibly useful in teaching you on the point and assist you with settling on progressively educated choices.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When looking for youngster care law data note that laws can shift in each state. Additionally, \"lawful guidance\" is something that must be given by an authorized lawyer in your locale. While the general wellbeing of the kid is regularly the standard for care judgments in most all states, explicit state law data can differ contingent upon the state you are in. On the off chance that you are looking for exhortation custom-made to your particular circumstance and your particular needs you\'ll need to talk with a lawyer authorized to specialize in legal matters in your state.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Parent\'s confronted with separation and authority questions or included a debate in regards to their minor youngsters would profit by investing the effort to get taught and acquire however much data as could be expected about kid care law data and legitimate counsel. Being educated and picking up information is probably the best procedure accessible to you. Guardians who invest the energy getting instructed and learn however much as could reasonably be expected so they can appropriately arrange significant and applicable inquiries for their lawyer will for the most part amplify the time went through with their lawyer, experience lower lawful charges, and have increasingly positive outcomes.</p>\n<!-- /wp:paragraph -->','Child Custody Law - Information and Legal Advice','','publish','closed','closed','','child-custody-law-information-and-legal-advice','','','2020-06-19 08:38:00','2020-06-19 08:38:00','',0,'http://activistaspse.net/?p=8',0,'post','',0),(9,1,'2020-06-19 08:37:41','2020-06-19 08:37:41','','1','','inherit','closed','closed','','1','','','2020-06-19 08:37:41','2020-06-19 08:37:41','',8,'http://activistaspse.net/wp-content/uploads/2020/06/1.jpg',0,'attachment','image/jpeg',0),(10,1,'2020-06-19 08:37:57','2020-06-19 08:37:57','<!-- wp:paragraph -->\n<p>In the event that you are experiencing a separation and have kids or are engaged with an authority fight you presumably need to know where you can get care law data and legitimate guidance to assist you with your circumstance. There are numerous assets accessible for getting youngster care law data legitimate counsel however you have to realize where to look. It is additionally essential to recognize care data, law and lawful exhortation. Data is unique in relation to law and isn\'t really legitimate counsel. Data is useful in increasing a comprehension of the topic and can assist you with settling on progressively educated decisions. By being educated about kid care you\'ll have the option to associate better with those engaged with your case and have a superior comprehension of what a lawyer is discussing when he/she presents you with lawful exhortation and your lawful alternatives dependent on the realities of your particular case.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a huge amount of guardianship data on the web and regularly numerous assets accessible that can help you at your neighborhood town hall and likely in your neighborhood. A large portion of the data you may go over on the web, at the town hall, or by means of self improvement habitats are for enlightening purposes just and not legitimate counsel. Quality data can be incredibly useful in teaching you on the point and assist you with settling on progressively educated choices.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When looking for youngster care law data note that laws can shift in each state. Additionally, \"lawful guidance\" is something that must be given by an authorized lawyer in your locale. While the general wellbeing of the kid is regularly the standard for care judgments in most all states, explicit state law data can differ contingent upon the state you are in. On the off chance that you are looking for exhortation custom-made to your particular circumstance and your particular needs you\'ll need to talk with a lawyer authorized to specialize in legal matters in your state.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Parent\'s confronted with separation and authority questions or included a debate in regards to their minor youngsters would profit by investing the effort to get taught and acquire however much data as could be expected about kid care law data and legitimate counsel. Being educated and picking up information is probably the best procedure accessible to you. Guardians who invest the energy getting instructed and learn however much as could reasonably be expected so they can appropriately arrange significant and applicable inquiries for their lawyer will for the most part amplify the time went through with their lawyer, experience lower lawful charges, and have increasingly positive outcomes.</p>\n<!-- /wp:paragraph -->','Child Custody Law - Information and Legal Advice','','inherit','closed','closed','','8-revision-v1','','','2020-06-19 08:37:57','2020-06-19 08:37:57','',8,'http://activistaspse.net/8-revision-v1/',0,'revision','',0),(12,1,'2020-06-19 08:46:31','2020-06-19 08:46:31','<!-- wp:paragraph -->\n<p>In some cases you chance upon some genuine great, and prepared to-get-moving data about how to apply these Universal Laws of fascination in our life to your advantage. In any case, the main part of the data you find is either excessively, or too confused to even think about beginning to apply it in your life immediately.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For instance, many \'specialists\' essentially focus on the Law of Attraction without taking some other of the general components of life or Universal Laws of fascination into account. There are sure limit conditions to the use of the Law of Attraction, and one of them is the focal point of this article. It\'s what I call, the Law of Love, just to stick to the supported \'Law\'- wording.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As a result of the way that couple of geniuses give any consideration to other all inclusive components other than the widespread Law of Attraction, the vast majority are not \'accomplishing\', \'showing\', or \'drawing in\' that a lot to be honest, paying little mind to how diligently they attempt.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let me reveal to you why. There are normally two explanations behind this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1.Too much, definite and in this way too complex data. One discussions around seven Universal Laws of Attraction, another discussions around twelve Laws of Success, one more discussions around twenty-one Subsidiary Laws or Non mainstream Laws. The vast majority don\'t have the foggiest idea who\'s privilege any longer. Isn\'t that right? Thus, a great many people either do nothing by any means, or they concentrate every single distinctive book, tapes, and pictures, and begin to get things done of one book that neutralize things of the other. No outcomes come to fruition, and a considerable lot of us quit totally and discount everything as junk or bombast.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2.Too little data. There can be too little data in two unique manners. To begin with, too little data can propose the data given isn\'t right. This is frequently the situation. Yet, second, and generally, the data given might be valid, however is insufficient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Frequently, people simply center around the Law of Attraction, however they overlook that there is a whole pack of other general standards (or Laws) to think about. That doesn\'t mean you need to think about each and every minor detail. All things considered you succumb to the next snare, which is the snare of something over the top, excessively point by point and too complex data.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No, you can save things straightforward for yourself in the event that you basically focus on the primary all inclusive standards. By that, you consequently spread all nitty gritty, auxiliary Laws you can consider.</p>\n<!-- /wp:paragraph -->','Universal Laws of Attraction - Law of Love and Law of Attraction - Are They the Same?','','publish','closed','closed','','universal-laws-of-attraction-law-of-love-and-law-of-attraction-are-they-the-same','','','2020-06-19 08:46:35','2020-06-19 08:46:35','',0,'http://activistaspse.net/?p=12',0,'post','',0),(13,1,'2020-06-19 08:43:56','2020-06-19 08:43:56','','2','','inherit','closed','closed','','2','','','2020-06-19 08:43:56','2020-06-19 08:43:56','',12,'http://activistaspse.net/wp-content/uploads/2020/06/2.jpg',0,'attachment','image/jpeg',0),(14,1,'2020-06-19 08:46:31','2020-06-19 08:46:31','<!-- wp:paragraph -->\n<p>In some cases you chance upon some genuine great, and prepared to-get-moving data about how to apply these Universal Laws of fascination in our life to your advantage. In any case, the main part of the data you find is either excessively, or too confused to even think about beginning to apply it in your life immediately.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For instance, many \'specialists\' essentially focus on the Law of Attraction without taking some other of the general components of life or Universal Laws of fascination into account. There are sure limit conditions to the use of the Law of Attraction, and one of them is the focal point of this article. It\'s what I call, the Law of Love, just to stick to the supported \'Law\'- wording.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As a result of the way that couple of geniuses give any consideration to other all inclusive components other than the widespread Law of Attraction, the vast majority are not \'accomplishing\', \'showing\', or \'drawing in\' that a lot to be honest, paying little mind to how diligently they attempt.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let me reveal to you why. There are normally two explanations behind this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1.Too much, definite and in this way too complex data. One discussions around seven Universal Laws of Attraction, another discussions around twelve Laws of Success, one more discussions around twenty-one Subsidiary Laws or Non mainstream Laws. The vast majority don\'t have the foggiest idea who\'s privilege any longer. Isn\'t that right? Thus, a great many people either do nothing by any means, or they concentrate every single distinctive book, tapes, and pictures, and begin to get things done of one book that neutralize things of the other. No outcomes come to fruition, and a considerable lot of us quit totally and discount everything as junk or bombast.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2.Too little data. There can be too little data in two unique manners. To begin with, too little data can propose the data given isn\'t right. This is frequently the situation. Yet, second, and generally, the data given might be valid, however is insufficient.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Frequently, people simply center around the Law of Attraction, however they overlook that there is a whole pack of other general standards (or Laws) to think about. That doesn\'t mean you need to think about each and every minor detail. All things considered you succumb to the next snare, which is the snare of something over the top, excessively point by point and too complex data.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No, you can save things straightforward for yourself in the event that you basically focus on the primary all inclusive standards. By that, you consequently spread all nitty gritty, auxiliary Laws you can consider.</p>\n<!-- /wp:paragraph -->','Universal Laws of Attraction - Law of Love and Law of Attraction - Are They the Same?','','inherit','closed','closed','','12-revision-v1','','','2020-06-19 08:46:31','2020-06-19 08:46:31','',12,'http://activistaspse.net/12-revision-v1/',0,'revision','',0),(16,1,'2020-06-19 09:13:37','2020-06-19 09:13:37','<!-- wp:paragraph -->\n<p>[wpforms id=\"37\" title=\"false\" description=\"false\"]</p>\n<!-- /wp:paragraph -->','Reach Us','','publish','closed','closed','','reach-us','','','2020-06-19 09:47:42','2020-06-19 09:47:42','',0,'http://activistaspse.net/?page_id=16',0,'page','',0),(17,1,'2020-06-19 09:13:37','2020-06-19 09:13:37','','Reach Us','','inherit','closed','closed','','16-revision-v1','','','2020-06-19 09:13:37','2020-06-19 09:13:37','',16,'http://activistaspse.net/16-revision-v1/',0,'revision','',0),(18,1,'2020-06-19 09:13:58','2020-06-19 09:13:58','','About Us','','publish','closed','closed','','about-us','','','2020-06-19 09:14:00','2020-06-19 09:14:00','',0,'http://activistaspse.net/?page_id=18',0,'page','',0),(19,1,'2020-06-19 09:13:58','2020-06-19 09:13:58','','About Us','','inherit','closed','closed','','18-revision-v1','','','2020-06-19 09:13:58','2020-06-19 09:13:58','',18,'http://activistaspse.net/18-revision-v1/',0,'revision','',0),(20,1,'2020-06-19 09:14:41','2020-06-19 09:14:41','<!-- wp:paragraph -->\n<p>[wpautoterms company_name] (\"us\", \"we\", or \"our\") operates the [wpautoterms site_name] website (the \"Service\").</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This page informs you of our policies regarding the collection, use and disclosure of Personal Information when you use our Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We will not use or share your information with anyone except as described in this Privacy Policy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We 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]</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Information Collection And Use</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While 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:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Name</li><li>Email address</li><li>Telephone number</li><li>Address</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Log Data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Cookies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Cookies 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Service Providers</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>These 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Security</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Links To Other Sites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have no control over, and assume no responsibility for the content, privacy policies or practices of any third party sites or services.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Children\'s Privacy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our Service does not address anyone under the age of 18 (\"Children\").</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Compliance With Laws</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We will disclose your Personal Information where required to do so by law or subpoena.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Changes To This Privacy Policy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Contact Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you have any questions about this Privacy Policy, please contact us.</p>\n<!-- /wp:paragraph -->','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2020-06-19 09:51:50','2020-06-19 09:51:50','',0,'http://activistaspse.net/?page_id=20',0,'page','',0),(21,1,'2020-06-19 09:14:41','2020-06-19 09:14:41','','Privacy Policy','','inherit','closed','closed','','20-revision-v1','','','2020-06-19 09:14:41','2020-06-19 09:14:41','',20,'http://activistaspse.net/20-revision-v1/',0,'revision','',0),(22,1,'2020-06-19 09:15:01','2020-06-19 09:15:01','<!-- wp:paragraph -->\n<p>Please 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\").</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Intellectual Property</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Service and its original content, features and functionality are and will remain the exclusive property of [wpautoterms company_name] and its licensors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Links To Other Web Sites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our Service may contain links to third-party web sites or services that are not owned or controlled by [wpautoterms company_name].</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>[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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We strongly advise you to read the terms and conditions and privacy policies of any third-party web sites or services that you visit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Disclaimer</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Your 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Governing Law</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These Terms shall be governed and construed in accordance with the laws of Spain without regard to its conflict of law provisions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Changes</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Contact Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you have any questions about these Terms, please contact us.</p>\n<!-- /wp:paragraph -->','Terms and Conditions','','publish','closed','closed','','terms-and-conditions','','','2020-06-19 09:55:29','2020-06-19 09:55:29','',0,'http://activistaspse.net/?page_id=22',0,'page','',0),(23,1,'2020-06-19 09:15:01','2020-06-19 09:15:01','','Terms and Conditions','','inherit','closed','closed','','22-revision-v1','','','2020-06-19 09:15:01','2020-06-19 09:15:01','',22,'http://activistaspse.net/22-revision-v1/',0,'revision','',0),(24,1,'2020-06-19 09:15:24','2020-06-19 09:15:24','','Law','','publish','closed','closed','','law','','','2020-06-19 09:15:25','2020-06-19 09:15:25','',0,'http://activistaspse.net/?page_id=24',0,'page','',0),(25,1,'2020-06-19 09:15:24','2020-06-19 09:15:24','','Law','','inherit','closed','closed','','24-revision-v1','','','2020-06-19 09:15:24','2020-06-19 09:15:24','',24,'http://activistaspse.net/24-revision-v1/',0,'revision','',0),(26,1,'2020-06-19 09:16:11','2020-06-19 09:16:11','','Home','','publish','closed','closed','','home','','','2020-06-19 09:16:11','2020-06-19 09:16:11','',0,'http://activistaspse.net/?p=26',1,'nav_menu_item','',0),(27,1,'2020-06-19 09:16:11','2020-06-19 09:16:11',' ','','','publish','closed','closed','','27','','','2020-06-19 09:16:11','2020-06-19 09:16:11','',0,'http://activistaspse.net/?p=27',2,'nav_menu_item','',0),(28,1,'2020-06-19 09:16:11','2020-06-19 09:16:11',' ','','','publish','closed','closed','','28','','','2020-06-19 09:16:11','2020-06-19 09:16:11','',0,'http://activistaspse.net/?p=28',3,'nav_menu_item','',0),(29,1,'2020-06-19 09:16:11','2020-06-19 09:16:11',' ','','','publish','closed','closed','','29','','','2020-06-19 09:16:11','2020-06-19 09:16:11','',0,'http://activistaspse.net/?p=29',4,'nav_menu_item','',0),(30,1,'2020-06-19 09:16:11','2020-06-19 09:16:11',' ','','','publish','closed','closed','','30','','','2020-06-19 09:16:11','2020-06-19 09:16:11','',0,'http://activistaspse.net/?p=30',5,'nav_menu_item','',0),(31,1,'2020-06-19 09:16:11','2020-06-19 09:16:11',' ','','','publish','closed','closed','','31','','','2020-06-19 09:16:11','2020-06-19 09:16:11','',0,'http://activistaspse.net/?p=31',6,'nav_menu_item','',0),(33,1,'2020-06-19 09:26:14','2020-06-19 09:26:14','.site-header .site-branding .site-title a:hover, a:active, a:visited {\n color: white !IMPORTANT;\n}\n\n.footer-widget-wrap {\n padding: 0px 0 0px;\n}\n\n.site-footer-primary .desc-menu-wrap {\n text-align: center;\n padding: 0px 0 0;\n}\n\n.bottom-footer {\n padding-top: 30px !important;\n padding-bottom: 20px;\n}','photoway','','publish','closed','closed','','photoway','','','2020-06-19 10:44:50','2020-06-19 10:44:50','',0,'http://activistaspse.net/photoway/',0,'custom_css','',0),(34,1,'2020-06-19 09:26:14','2020-06-19 09:26:14','.site-header .site-branding .site-title a:hover, a:active, a:visited {\n color: white !IMPORTANT;\n}','photoway','','inherit','closed','closed','','33-revision-v1','','','2020-06-19 09:26:14','2020-06-19 09:26:14','',33,'http://activistaspse.net/33-revision-v1/',0,'revision','',0),(37,1,'2020-06-19 09:42:28','2020-06-19 09:42:28','{\"id\":\"37\",\"field_id\":3,\"fields\":[{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"simple\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},{\"id\":\"2\",\"type\":\"textarea\",\"label\":\"Comment or Message\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"css\":\"\"}],\"settings\":{\"form_title\":\"Simple Contact Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"ACTIVISTAS PSE\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"18\",\"redirect\":\"\"}}},\"meta\":{\"template\":\"contact\"}}','Simple Contact Form','','publish','closed','closed','','simple-contact-form','','','2020-06-19 09:46:12','2020-06-19 09:46:12','',0,'http://activistaspse.net/?post_type=wpforms&p=37',0,'wpforms','',0),(38,1,'2020-06-19 09:47:41','2020-06-19 09:47:41','<!-- wp:paragraph -->\n<p>[wpforms id=\"37\" title=\"false\" description=\"false\"]</p>\n<!-- /wp:paragraph -->','Reach Us','','inherit','closed','closed','','16-revision-v1','','','2020-06-19 09:47:41','2020-06-19 09:47:41','',16,'http://activistaspse.net/16-revision-v1/',0,'revision','',0),(39,1,'2020-06-19 09:48:54','2020-06-19 09:48:54','{\"id\":\"39\",\"field_id\":2,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Newsletter Signup Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Newsletter Signup Form Entry\",\"sender_name\":\"ACTIVISTAS PSE\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"18\",\"redirect\":\"\"}}},\"meta\":{\"template\":\"subscribe\"}}','Newsletter Signup Form','','publish','closed','closed','','newsletter-signup-form','','','2020-06-19 09:49:34','2020-06-19 09:49:34','',0,'http://activistaspse.net/?post_type=wpforms&p=39',0,'wpforms','',0),(44,1,'2020-06-19 09:51:49','2020-06-19 09:51:49','<!-- wp:paragraph -->\n<p>[wpautoterms company_name] (\"us\", \"we\", or \"our\") operates the [wpautoterms site_name] website (the \"Service\").</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This page informs you of our policies regarding the collection, use and disclosure of Personal Information when you use our Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We will not use or share your information with anyone except as described in this Privacy Policy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We 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]</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Information Collection And Use</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While 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:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Name</li><li>Email address</li><li>Telephone number</li><li>Address</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Log Data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Cookies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Cookies 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Service Providers</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>These 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Security</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Links To Other Sites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have no control over, and assume no responsibility for the content, privacy policies or practices of any third party sites or services.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Children\'s Privacy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our Service does not address anyone under the age of 18 (\"Children\").</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Compliance With Laws</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We will disclose your Personal Information where required to do so by law or subpoena.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Changes To This Privacy Policy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Contact Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you have any questions about this Privacy Policy, please contact us.</p>\n<!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','20-revision-v1','','','2020-06-19 09:51:49','2020-06-19 09:51:49','',20,'http://activistaspse.net/20-revision-v1/',0,'revision','',0),(49,1,'2020-06-19 09:54:21','2020-06-19 09:54:21','<!-- wp:paragraph -->\n<p>Please 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\").</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Intellectual Property</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Service and its original content, features and functionality are and will remain the exclusive property of [wpautoterms company_name] and its licensors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Links To Other Web Sites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our Service may contain links to third-party web sites or services that are not owned or controlled by [wpautoterms company_name].</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>[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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We strongly advise you to read the terms and conditions and privacy policies of any third-party web sites or services that you visit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Disclaimer</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Your 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Governing Law</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These Terms shall be governed and construed in accordance with the laws of Spain without regard to its conflict of law provisions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Changes</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By 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.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Contact Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you have any questions about these Terms, please contact us.</p>\n<!-- /wp:paragraph -->','Terms and Conditions','','inherit','closed','closed','','22-revision-v1','','','2020-06-19 09:54:21','2020-06-19 09:54:21','',22,'http://activistaspse.net/22-revision-v1/',0,'revision','',0),(50,1,'2020-06-19 09:57:48','2020-06-19 09:57:48','','cropped-2.jpg','','inherit','closed','closed','','cropped-2-jpg','','','2020-06-19 09:57:48','2020-06-19 09:57:48','',0,'http://activistaspse.net/wp-content/uploads/2020/06/cropped-2.jpg',0,'attachment','image/jpeg',0),(52,1,'2020-06-19 09:59:19','2020-06-19 09:59:19','','cropped-1.jpg','','inherit','closed','closed','','cropped-1-jpg','','','2020-06-19 09:59:19','2020-06-19 09:59:19','',0,'http://activistaspse.net/wp-content/uploads/2020/06/cropped-1.jpg',0,'attachment','image/jpeg',0),(54,1,'2020-06-19 10:00:10','2020-06-19 10:00:10','http://activistaspse.net/wp-content/uploads/2020/06/cropped-2-1.jpg','cropped-2-1.jpg','','inherit','closed','closed','','cropped-2-1-jpg','','','2020-06-19 10:00:10','2020-06-19 10:00:10','',0,'http://activistaspse.net/wp-content/uploads/2020/06/cropped-2-1.jpg',0,'attachment','image/jpeg',0),(57,1,'2020-06-19 10:18:29','2020-06-19 10:18:29','','3','','inherit','closed','closed','','3','','','2020-06-19 10:18:29','2020-06-19 10:18:29','',0,'http://activistaspse.net/wp-content/uploads/2020/06/3.jpg',0,'attachment','image/jpeg',0),(59,1,'2020-06-19 10:40:45','2020-06-19 10:40:45','.site-header .site-branding .site-title a:hover, a:active, a:visited {\n color: white !IMPORTANT;\n}\n\n.footer-widget-wrap {\n padding: 0px 0 0px;\n}','photoway','','inherit','closed','closed','','33-revision-v1','','','2020-06-19 10:40:45','2020-06-19 10:40:45','',33,'http://activistaspse.net/33-revision-v1/',0,'revision','',0),(61,1,'2020-06-19 10:42:31','2020-06-19 10:42:31','.site-header .site-branding .site-title a:hover, a:active, a:visited {\n color: white !IMPORTANT;\n}\n\n.footer-widget-wrap {\n padding: 0px 0 0px;\n}\n\n.site-footer-primary .desc-menu-wrap {\n text-align: center;\n padding: 0px 0 0;\n}','photoway','','inherit','closed','closed','','33-revision-v1','','','2020-06-19 10:42:31','2020-06-19 10:42:31','',33,'http://activistaspse.net/33-revision-v1/',0,'revision','',0),(63,1,'2020-06-19 10:43:10','2020-06-19 10:43:10','.site-header .site-branding .site-title a:hover, a:active, a:visited {\n color: white !IMPORTANT;\n}\n\n.footer-widget-wrap {\n padding: 0px 0 0px;\n}\n\n.site-footer-primary .desc-menu-wrap {\n text-align: center;\n padding: 0px 0 0;\n}\n\n.bottom-footer {\n padding: 20px 0;\n}','photoway','','inherit','closed','closed','','33-revision-v1','','','2020-06-19 10:43:10','2020-06-19 10:43:10','',33,'http://activistaspse.net/33-revision-v1/',0,'revision','',0),(65,1,'2020-06-19 10:44:50','2020-06-19 10:44:50','.site-header .site-branding .site-title a:hover, a:active, a:visited {\n color: white !IMPORTANT;\n}\n\n.footer-widget-wrap {\n padding: 0px 0 0px;\n}\n\n.site-footer-primary .desc-menu-wrap {\n text-align: center;\n padding: 0px 0 0;\n}\n\n.bottom-footer {\n padding-top: 30px !important;\n padding-bottom: 20px;\n}','photoway','','inherit','closed','closed','','33-revision-v1','','','2020-06-19 10:44:50','2020-06-19 10:44:50','',33,'http://activistaspse.net/33-revision-v1/',0,'revision','',0),(66,1,'2020-07-12 10:29:30','2020-07-12 10:29:30','Cuando necesitas <a href=\"https://www.touchatag.com/es/\">comprar un producto de Touchatag.es</a>, ya no tienes que pedirle ayuda a otra persona. Simplemente vaya a estos sitios de comparación y busque sus productos favoritos. La búsqueda y la comparación de productos ayuda a comprender los distintos sitios de compras. Podrías comparar sus ofertas para hacer el pedido del producto correcto y el precio correcto.\r\n<h2>El auge de las compras por comparación:</h2>\r\nConsidere la compra por comparación, si quiere ahorrar dinero y aún así obtener el mejor producto para su presupuesto. La mayoría de la gente piensa que es una tarea aburrida, pero esto puede resultar un desafío y una recompensa a largo plazo. La comparación de marcas no sólo te ayudará a conseguir el producto adecuado y el mejor valor por tu precio, sino que también te ayudará a ahorrar dinero a largo plazo.\r\n<ul>\r\n <li>Si piensas que la comparación de marcas se trata de encontrar el producto al precio más barato, entonces nunca es gran cosa. Pero la compra inteligente se trata de encontrar el producto de mejor calidad por el precio más bajo. ¡Esta es probablemente una de las razones por las que la industria de las compras por comparación está en alza!</li>\r\n</ul>\r\n<h2>¿Cómo funciona?</h2>\r\nLos motores de búsqueda por comparación actúan como cualquier otro motor de búsqueda en línea. Una vez que comienzas a buscar tu producto, un gran número de sitios web aparecerán proporcionando un número de selecciones relacionadas con tu búsqueda. Puede visitar estos sitios y comparar ciertos factores que le ayudarán a obtener un producto que satisfaga sus demandas. Estos factores son:\r\n<ol>\r\n <li>Marcas</li>\r\n <li>Tendencias</li>\r\n <li>Colores</li>\r\n <li>Ofertas</li>\r\n</ol>\r\n<h2>Precios</h2>\r\nEs más, la comparación de compras es gratis. Si te interesa unirte a cualquier club de compras, entonces sólo una pequeña cuota anual lo hace y podrás disfrutar de sus grandes beneficios anualmente.','Hoy en día, la compra comparativa es una enorme industria en línea.','','publish','closed','closed','','hoy-en-dia-la-compra-comparativa-es-una-enorme-industria-en-linea','','','2020-06-19 16:47:47','2020-06-19 16:47:47','',0,'http://activistaspse.net/?p=66',0,'post','',0),(67,1,'2020-06-19 16:47:19','2020-06-19 16:47:19','','boka9js','','inherit','closed','closed','','boka9js','','','2020-06-19 16:47:19','2020-06-19 16:47:19','',66,'http://activistaspse.net/wp-content/uploads/2020/06/boka9js.jpg',0,'attachment','image/jpeg',0),(68,1,'2020-06-19 16:47:47','2020-06-19 16:47:47','Cuando necesitas <a href=\"https://www.touchatag.com/es/\">comprar un producto de Touchatag.es</a>, ya no tienes que pedirle ayuda a otra persona. Simplemente vaya a estos sitios de comparación y busque sus productos favoritos. La búsqueda y la comparación de productos ayuda a comprender los distintos sitios de compras. Podrías comparar sus ofertas para hacer el pedido del producto correcto y el precio correcto.\r\n<h2>El auge de las compras por comparación:</h2>\r\nConsidere la compra por comparación, si quiere ahorrar dinero y aún así obtener el mejor producto para su presupuesto. La mayoría de la gente piensa que es una tarea aburrida, pero esto puede resultar un desafío y una recompensa a largo plazo. La comparación de marcas no sólo te ayudará a conseguir el producto adecuado y el mejor valor por tu precio, sino que también te ayudará a ahorrar dinero a largo plazo.\r\n<ul>\r\n <li>Si piensas que la comparación de marcas se trata de encontrar el producto al precio más barato, entonces nunca es gran cosa. Pero la compra inteligente se trata de encontrar el producto de mejor calidad por el precio más bajo. ¡Esta es probablemente una de las razones por las que la industria de las compras por comparación está en alza!</li>\r\n</ul>\r\n<h2>¿Cómo funciona?</h2>\r\nLos motores de búsqueda por comparación actúan como cualquier otro motor de búsqueda en línea. Una vez que comienzas a buscar tu producto, un gran número de sitios web aparecerán proporcionando un número de selecciones relacionadas con tu búsqueda. Puede visitar estos sitios y comparar ciertos factores que le ayudarán a obtener un producto que satisfaga sus demandas. Estos factores son:\r\n<ol>\r\n <li>Marcas</li>\r\n <li>Tendencias</li>\r\n <li>Colores</li>\r\n <li>Ofertas</li>\r\n</ol>\r\n<h2>Precios</h2>\r\nEs más, la comparación de compras es gratis. Si te interesa unirte a cualquier club de compras, entonces sólo una pequeña cuota anual lo hace y podrás disfrutar de sus grandes beneficios anualmente.','Hoy en día, la compra comparativa es una enorme industria en línea.','','inherit','closed','closed','','66-revision-v1','','','2020-06-19 16:47:47','2020-06-19 16:47:47','',66,'http://activistaspse.net/66-revision-v1/',0,'revision','',0),(69,1,'2020-06-19 16:59:32','2020-06-19 16:59:32','http://activistaspse.net/wp-content/uploads/2020/06/cropped-3-e1592563136645.jpg','cropped-3-e1592563136645.jpg','','inherit','closed','closed','','cropped-3-e1592563136645-jpg','','','2020-06-19 16:59:32','2020-06-19 16:59:32','',0,'http://activistaspse.net/wp-content/uploads/2020/06/cropped-3-e1592563136645.jpg',0,'attachment','image/jpeg',0),(71,1,'2020-07-04 06:01:08','2020-07-04 06:01:08','Una de las ventajas más atractivas de la compra en la web es la posibilidad de navegar por muchas más tiendas de las que estarían disponibles si se <a href=\"https://www.p4r.es\">comprara de la minocreditos P4R.es</a> tradicional. Un poco como el escaparate de Oxford Street, navegar por las tiendas de la web te lleva a muchas tiendas variadas e improbables que nunca hubieras pensado en visitar y con mucho menos esfuerzo.\r\n<ol>\r\n <li>No sólo eso, la red te permite visitar tiendas que están simplemente demasiado lejos para visitarlas en persona, dependiendo de cuán lejos vivas de la tienda. Imagina a un comprador que vive en las Hebridas</li>\r\n <li>Exteriores visitando incluso una tienda en Glasgow, el tiempo que se consume viajando allí solo ocupará la mayor parte del día. Con la llegada de la web, incluso el comprador de las Hebridas Exteriores puede ahora comprar literalmente en cualquier parte del mundo.</li>\r\n</ol>\r\n<h2>Por lo tanto, es importante encontrar un buen centro comercial virtual que enumere los diferentes tipos de tiendas por categoría.</h2>\r\nEs posible que el usuario pueda encontrar una variedad de tiendas todas relacionadas con el mismo tema y de un vistazo también encontrar los nombres de las tiendas que no son necesariamente reconocibles al instante pero que al mismo tiempo proporcionan una alternativa real.\r\n<ul>\r\n <li>Cuando busco centros comerciales, mi primer instinto es encontrar uno que sea fácil de navegar. Encontrar una tienda que esté en la lista pero que sea muy difícil de encontrar puede ser muy molesto.</li>\r\n <li>Con tiendas listadas en categorías, la tienda que buscas será fácil de encontrar si está listada, pero si no, otras tiendas similares serán reveladas, unas que tal vez no se te hubieran ocurrido.</li>\r\n</ul>\r\n<h2>Los centros comerciales de la web también pueden listar productos y artículos específicamente.</h2>\r\nComo antes, si la navegación del sitio web es fácil de entender, la experiencia puede ser placentera y el esfuerzo para encontrar exactamente lo que quieres se reduce a la mitad. Los artículos y productos que se listan específicamente, se suelen proporcionar en un formato de comparación en <a href=\"https://www.p4r.es/minicreditos/prestamo-1200-euros/\">1200 euros creditos.</a>\r\n<ul>\r\n <li>No sólo se encuentra rápidamente y exactamente lo que se busca, sino que también se encuentran otros artículos y servicios que son similares y con los que se puede comparar. Tomemos por ejemplo las suscripciones a revistas de \"jardinería\".</li>\r\n <li>Las compras por Internet pueden ser muy gratificantes y reveladoras. Al encontrar un buen centro comercial en Internet, la experiencia puede ser tanto agradable como inspiradora, lo que a veces desata su mente creativa.</li>\r\n</ul>','Las páginas web de compras pueden ser reveladoras y gratificantes','','publish','closed','closed','','las-paginas-web-de-compras-pueden-ser-reveladoras-y-gratificantes','','','2020-06-19 17:21:10','2020-06-19 17:21:10','',0,'http://activistaspse.net/?p=71',0,'post','',0),(72,1,'2020-06-19 17:20:27','2020-06-19 17:20:27','','b92k2m1','','inherit','closed','closed','','b92k2m1','','','2020-06-19 17:20:27','2020-06-19 17:20:27','',71,'http://activistaspse.net/wp-content/uploads/2020/06/b92k2m1.jpg',0,'attachment','image/jpeg',0),(73,1,'2020-06-19 17:21:10','2020-06-19 17:21:10','Una de las ventajas más atractivas de la compra en la web es la posibilidad de navegar por muchas más tiendas de las que estarían disponibles si se <a href=\"https://www.p4r.es\">comprara de la minocreditos P4R.es</a> tradicional. Un poco como el escaparate de Oxford Street, navegar por las tiendas de la web te lleva a muchas tiendas variadas e improbables que nunca hubieras pensado en visitar y con mucho menos esfuerzo.\r\n<ol>\r\n <li>No sólo eso, la red te permite visitar tiendas que están simplemente demasiado lejos para visitarlas en persona, dependiendo de cuán lejos vivas de la tienda. Imagina a un comprador que vive en las Hebridas</li>\r\n <li>Exteriores visitando incluso una tienda en Glasgow, el tiempo que se consume viajando allí solo ocupará la mayor parte del día. Con la llegada de la web, incluso el comprador de las Hebridas Exteriores puede ahora comprar literalmente en cualquier parte del mundo.</li>\r\n</ol>\r\n<h2>Por lo tanto, es importante encontrar un buen centro comercial virtual que enumere los diferentes tipos de tiendas por categoría.</h2>\r\nEs posible que el usuario pueda encontrar una variedad de tiendas todas relacionadas con el mismo tema y de un vistazo también encontrar los nombres de las tiendas que no son necesariamente reconocibles al instante pero que al mismo tiempo proporcionan una alternativa real.\r\n<ul>\r\n <li>Cuando busco centros comerciales, mi primer instinto es encontrar uno que sea fácil de navegar. Encontrar una tienda que esté en la lista pero que sea muy difícil de encontrar puede ser muy molesto.</li>\r\n <li>Con tiendas listadas en categorías, la tienda que buscas será fácil de encontrar si está listada, pero si no, otras tiendas similares serán reveladas, unas que tal vez no se te hubieran ocurrido.</li>\r\n</ul>\r\n<h2>Los centros comerciales de la web también pueden listar productos y artículos específicamente.</h2>\r\nComo antes, si la navegación del sitio web es fácil de entender, la experiencia puede ser placentera y el esfuerzo para encontrar exactamente lo que quieres se reduce a la mitad. Los artículos y productos que se listan específicamente, se suelen proporcionar en un formato de comparación en <a href=\"https://www.p4r.es/minicreditos/prestamo-1200-euros/\">1200 euros creditos.</a>\r\n<ul>\r\n <li>No sólo se encuentra rápidamente y exactamente lo que se busca, sino que también se encuentran otros artículos y servicios que son similares y con los que se puede comparar. Tomemos por ejemplo las suscripciones a revistas de \"jardinería\".</li>\r\n <li>Las compras por Internet pueden ser muy gratificantes y reveladoras. Al encontrar un buen centro comercial en Internet, la experiencia puede ser tanto agradable como inspiradora, lo que a veces desata su mente creativa.</li>\r\n</ul>','Las páginas web de compras pueden ser reveladoras y gratificantes','','inherit','closed','closed','','71-revision-v1','','','2020-06-19 17:21:10','2020-06-19 17:21:10','',71,'http://activistaspse.net/71-revision-v1/',0,'revision','',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 (8,2,0),(8,4,0),(8,5,0),(8,6,0),(12,2,0),(12,4,0),(12,5,0),(12,6,0),(26,7,0),(27,7,0),(28,7,0),(29,7,0),(30,7,0),(31,7,0),(66,6,0),(71,8,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=9 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,2),(4,4,'category','',0,2),(5,5,'category','',0,2),(6,6,'category','',0,3),(7,7,'nav_menu','',0,6),(8,8,'category','',0,1);
/*!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=9 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,'Blog','blog',0),(4,'Law','law',0),(5,'News','news',0),(6,'Information','information',0),(7,'Main Menu','main-menu',0),(8,'Posibilidad','posibilidad',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=37 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','Randy'),(3,1,'last_name','Horton'),(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:\"1b42dfaa4e073272ed263bf70bc5111c8fcf63946f4c32424eba6aab22d0769c\";a:4:{s:10:\"expiration\";i:1648068952;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:1647896152;}s:64:\"11f4537d81d1970da7774a9d8f7c030c554daf584f8151c38928e5a808b1f6c9\";a:4:{s:10:\"expiration\";i:1648068952;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:1647896152;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','74'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:10:\"84.86.10.0\";}'),(19,1,'wp_user-settings','libraryContent=browse'),(20,1,'wp_user-settings-time','1592555879'),(21,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\";}'),(22,1,'metaboxhidden_nav-menus','a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}');
/*!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=3 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$B8L9hmDxHZJR7l1CD1m5yZGg9Dqnjl/','admin','[email protected]','http://activistaspse.net','2020-04-19 09:48:28','',0,'Randy Horton');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wpforms_tasks_meta`
--
DROP TABLE IF EXISTS `wp_wpforms_tasks_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpforms_tasks_meta` (
`id` bigint NOT NULL AUTO_INCREMENT,
`action` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`date` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wpforms_tasks_meta`
--
LOCK TABLES `wp_wpforms_tasks_meta` WRITE;
/*!40000 ALTER TABLE `wp_wpforms_tasks_meta` DISABLE KEYS */;
INSERT INTO `wp_wpforms_tasks_meta` VALUES (1,'wpforms_process_entry_emails_meta_cleanup','Wzg2NDAwXQ==','2020-09-14 03:42:40'),(2,'wpforms_admin_notifications_update','W10=','2021-05-04 19:58:44');
/*!40000 ALTER TABLE `wp_wpforms_tasks_meta` 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;
/*!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:31:06