File: /opt/aphex/sites/supportfazilsay.com/db.sql
-- MySQL dump 10.13 Distrib 8.0.32, for Linux (x86_64)
--
-- Host: localhost Database: supportfazilsay_com
-- ------------------------------------------------------
-- 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_blc_filters`
--
DROP TABLE IF EXISTS `wp_blc_filters`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_blc_filters` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`params` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_blc_filters`
--
LOCK TABLES `wp_blc_filters` WRITE;
/*!40000 ALTER TABLE `wp_blc_filters` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_blc_filters` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_blc_instances`
--
DROP TABLE IF EXISTS `wp_blc_instances`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_blc_instances` (
`instance_id` int unsigned NOT NULL AUTO_INCREMENT,
`link_id` int unsigned NOT NULL,
`container_id` int unsigned NOT NULL,
`container_type` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
`link_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`parser_type` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'link',
`container_field` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_context` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`raw_url` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`instance_id`),
KEY `link_id` (`link_id`),
KEY `source_id` (`container_type`,`container_id`),
KEY `parser_type` (`parser_type`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_blc_instances`
--
LOCK TABLES `wp_blc_instances` WRITE;
/*!40000 ALTER TABLE `wp_blc_instances` DISABLE KEYS */;
INSERT INTO `wp_blc_instances` VALUES (3,2,19,'post','inflammation','link','post_content','','https://www.medicalfacts.nl/2020/10/04/handige-diensten-voor-mantelzorgers-die-vergoed-worden/'),(4,1,19,'post','[YouTube Video]','youtube-iframe','post_content','','<iframe src=\"https://www.youtube.com/embed/q0kdQ_YnS30\" width=\"800\" height=\"360\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>'),(5,3,62,'post','minicreditos con asnef en Spain','link','post_content','','https://www.p4r.es/'),(6,4,62,'post','creditos 1500 euros','link','post_content','','https://www.p4r.es/minicreditos/prestamo-1500-euros/'),(7,5,68,'post','nordvpn opinioni @ Globalwatchonline.it','link','post_content','','https://www.globalwatchonline.com/it/vpn/reviews/nord-vpn/'),(8,6,68,'post','meilleur VPN en 2021.','link','post_content','','https://www.globalwatchonline.com/fr/vpn/guide/meilleur-vpn/'),(9,7,74,'post','SHIB','link','post_content','','https://www.bitcoinexchangenederland.nl/shiba-inu/'),(10,8,74,'post','XRP Ripple','link','post_content','','https://www.bitcoinexchangenederland.nl/ripple/'),(13,9,77,'post','live crypto rates Moveco.io','link','post_content','','https://moveco.io/'),(14,10,77,'post','folm.io cryptocurrency','link','post_content','','https://folm.io/'),(15,11,85,'post','Price prediction Cryptocurrency Netherlands','link','post_content','','https://currencyconverters.org/nl/cryptocurrencies\''),(16,12,85,'post','Portugal crypto predictions','link','post_content','','https://currencyconverters.org/pt/cryptocurrencies');
/*!40000 ALTER TABLE `wp_blc_instances` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_blc_links`
--
DROP TABLE IF EXISTS `wp_blc_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_blc_links` (
`link_id` int unsigned NOT NULL AUTO_INCREMENT,
`url` text CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL,
`first_failure` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_check` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_success` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_check_attempt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`check_count` int unsigned NOT NULL DEFAULT '0',
`final_url` text CHARACTER SET latin1 COLLATE latin1_general_cs NOT NULL,
`redirect_count` smallint unsigned NOT NULL DEFAULT '0',
`log` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`http_code` smallint NOT NULL DEFAULT '0',
`status_code` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
`status_text` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '',
`request_duration` float NOT NULL DEFAULT '0',
`timeout` tinyint unsigned NOT NULL DEFAULT '0',
`broken` tinyint unsigned NOT NULL DEFAULT '0',
`warning` tinyint unsigned NOT NULL DEFAULT '0',
`may_recheck` tinyint(1) NOT NULL DEFAULT '1',
`being_checked` tinyint(1) NOT NULL DEFAULT '0',
`result_hash` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`false_positive` tinyint(1) NOT NULL DEFAULT '0',
`dismissed` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`link_id`),
KEY `url` (`url`(150)),
KEY `final_url` (`final_url`(150)),
KEY `http_code` (`http_code`),
KEY `broken` (`broken`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_blc_links`
--
LOCK TABLES `wp_blc_links` WRITE;
/*!40000 ALTER TABLE `wp_blc_links` DISABLE KEYS */;
INSERT INTO `wp_blc_links` VALUES (1,'http://www.youtube.com/watch?v=q0kdQ_YnS30','2020-08-24 05:16:16','2023-03-14 16:50:19','0000-00-00 00:00:00','2023-03-14 16:50:19',133,'http://www.youtube.com/watch?v=q0kdQ_YnS30',0,'<em>(Using YouTube API)</em>\n\n403 Forbidden\nUnknown YouTube API response received.\n---\nmessage: The request is missing a valid API key.\ndomain: global\nreason: forbidden\n\nLink is broken.',403,'warning','forbidden',0.042102,0,0,1,1,0,'youtube|403|0|0|-|-',0,0),(2,'https://www.medicalfacts.nl/2020/10/04/handige-diensten-voor-mantelzorgers-die-vergoed-worden/','0000-00-00 00:00:00','2023-03-14 16:50:33','2023-03-14 16:50:33','2023-03-14 16:50:33',0,'https://www.medicalfacts.nl/2020/10/04/handige-diensten-voor-mantelzorgers-die-vergoed-worden/',0,'=== HTTP code : 200 ===\n\nResponse headers\n================\nHTTP/2 200 \r\ndate: Tue, 14 Mar 2023 16:50:33 GMT\r\ncontent-type: text/html; charset=UTF-8\r\ncache-control: no-cache\r\nlast-modified: Tue, 14 Mar 2023 16:50:33 GMT\r\nlink: <https://www.medicalfacts.nl/wp-json/>; rel="https://api.w.org/"\r\nlink: <https://www.medicalfacts.nl/wp-json/wp/v2/posts/280886>; rel="alternate"; type="application/json"\r\nlink: <https://www.medicalfacts.nl/?p=280886>; rel=shortlink\r\nx-varnish: 3735922\r\nage: 0\r\nvia: 1.1 varnish (Varnish/6.1)\r\nx-varnish-host: ip-172-16-1-109\r\ncf-cache-status: DYNAMIC\r\nreport-to: {"endpoints":[{"url":"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=MfmNnxPpLM8G%2FCEvyuKSYo8SspyI1%2BrJnmRzuTS99v7GlIxE%2B2%2FvfPtWcyryWwircH0y7eyiX7fKj9dnajYvGYe5fuEoiAMUi%2B6Ap4h32X%2FtmQ%2FY296V%2FdXtDw0r11hfc79rdLrQUmoAgNr4rSQe79qy"}],"group":"cf-nel","max_age":604800}\r\nnel: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}\r\nserver: cloudflare\r\ncf-ray: 7a7e042d8d05bbd3-FRA\r\nalt-svc: h3=":443"; ma=86400, h3-29=":443"; ma=86400\r\n\r\nRequest headers\n================\nHEAD /2020/10/04/handige-diensten-voor-mantelzorgers-die-vergoed-worden/ HTTP/2\r\nHost: www.medicalfacts.nl\r\nuser-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36\r\naccept: */*\r\nreferer: https://supportfazilsay.com\r\nconnection: close\r\nx-newrelic-id: VwUGU1RbChACUFVWAAUAUlA=\r\nx-newrelic-transaction: PxQPVFFTCgYBAQQHVFIBXlIHFB8EBw8RVU4aWg0PBAAGVFwEVAJQVFwAAUNKQVlWU1RXBA4AFTs=\r\n\r\n\nLink is valid.',200,'','',0.546767,0,0,0,1,0,'200|0|0|https://www.medicalfacts.nl/2020/10/04/handige-diensten-voor-mantelzorgers-die-vergoed-worden/',0,0),(3,'https://www.p4r.es/','0000-00-00 00:00:00','2023-03-14 16:50:16','2023-03-14 16:50:16','2023-03-14 16:50:16',0,'https://lanuevaeuropa.com/',1,'=== HTTP code : 200 ===\n\nResponse headers\n================\nHTTP/2 301 \r\ncontent-type: text/html\r\ncontent-length: 707\r\ndate: Tue, 14 Mar 2023 16:50:17 GMT\r\nlocation: https://lanuevaeuropa.com/\r\nalt-svc: h3=":443"; ma=2592000, h3-29=":443"; ma=2592000, h3-Q050=":443"; ma=2592000, h3-Q046=":443"; ma=2592000, h3-Q043=":443"; ma=2592000, quic=":443"; ma=2592000; v="43,46"\r\n\r\nHTTP/2 200 \r\nx-powered-by: PHP/8.1.16\r\ncontent-type: text/html; charset=UTF-8\r\nlink: <https://lanuevaeuropa.com/wp-json/>; rel="https://api.w.org/"\r\nlink: <https://lanuevaeuropa.com/wp-json/wp/v2/pages/499>; rel="alternate"; type="application/json"\r\nlink: <https://lanuevaeuropa.com/>; rel=shortlink\r\ndate: Tue, 14 Mar 2023 16:50:18 GMT\r\nalt-svc: h3=":443"; ma=2592000, h3-29=":443"; ma=2592000, h3-Q050=":443"; ma=2592000, h3-Q046=":443"; ma=2592000, h3-Q043=":443"; ma=2592000, quic=":443"; ma=2592000; v="43,46"\r\n\r\nRequest headers\n================\nGET / HTTP/2\r\nHost: lanuevaeuropa.com\r\nuser-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36\r\naccept: */*\r\nreferer: https://supportfazilsay.com\r\nconnection: close\r\nrange: bytes=0-2048\r\nx-newrelic-id: VwUGU1RbChACUFVWAAUAUlA=\r\nx-newrelic-transaction: PxQPVFFTCgYBAQQHVFIBXlIHFB8EBw8RVU4aWg0PBAAGVFwEVAJQVFwAAUNKQVlWU1RXBA4AFTs=\r\n\r\n\nLink is valid.',200,'','',1.21758,0,0,0,1,0,'200|0|0|https://lanuevaeuropa.com/',0,0),(4,'https://www.p4r.es/minicreditos/prestamo-1500-euros/','2022-02-22 21:40:58','2023-03-14 16:50:32','2022-02-19 21:07:51','2023-03-14 16:50:32',58,'https://www.p4r.es/minicreditos/prestamo-1500-euros/',0,'=== HTTP code : 404 ===\n\nResponse headers\n================\nHTTP/2 404 \r\ncache-control: private, no-cache, no-store, must-revalidate, max-age=0\r\npragma: no-cache\r\ncontent-type: text/html\r\ncontent-length: 708\r\ndate: Tue, 14 Mar 2023 16:50:33 GMT\r\nalt-svc: h3=":443"; ma=2592000, h3-29=":443"; ma=2592000, h3-Q050=":443"; ma=2592000, h3-Q046=":443"; ma=2592000, h3-Q043=":443"; ma=2592000, quic=":443"; ma=2592000; v="43,46"\r\n\r\nRequest headers\n================\nGET /minicreditos/prestamo-1500-euros/ HTTP/2\r\nHost: www.p4r.es\r\nuser-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36\r\naccept: */*\r\nreferer: https://supportfazilsay.com\r\nconnection: close\r\nrange: bytes=0-2048\r\nx-newrelic-id: VwUGU1RbChACUFVWAAUAUlA=\r\nx-newrelic-transaction: PxQPVFFTCgYBAQQHVFIBXlIHFB8EBw8RVU4aWg0PBAAGVFwEVAJQVFwAAUNKQVlWU1RXBA4AFTs=\r\n\r\nResponse HTML\n================\n<!DOCTYPE html>\n<html style="height:100%">\n<head>\n<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />\n<title> 404 Not Found\r\n</title></head>\n<body style="color: #444; margin:0;font: normal 14px/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;">\n<div style="height:auto; min-height:100%; "> <div style="text-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;">\n <h1 style="margin:0; font-size:150px; line-height:150px; font-weight:bold;">404</h1>\n<h2 style="margin-top:20px;font-size: 30px;">Not Found\r\n</h2>\n<p>The resource requested could not be found on this server!</p>\n</div></div></body></html>\n\nLink is broken.',404,'','',0.159494,0,1,0,1,0,'404|broken|0|https://www.p4r.es/minicreditos/prestamo-1500-euros/',0,0),(5,'https://www.globalwatchonline.com/it/vpn/reviews/nord-vpn/','0000-00-00 00:00:00','2023-03-14 16:50:19','2023-03-14 16:50:19','2023-03-14 16:50:19',0,'https://globalwatchonline.com/it/vpn/reviews/nord-vpn/',1,'=== HTTP code : 200 ===\n\nResponse headers\n================\nHTTP/2 301 \r\nserver: nginx\r\ndate: Tue, 14 Mar 2023 16:50:22 GMT\r\ncontent-type: text/html; charset=UTF-8\r\nx-powered-by: PHP/8.0.28\r\nx-pingback: https://globalwatchonline.com/xmlrpc.php\r\nx-ua-compatible: IE=edge\r\nexpires: Tue, 14 Mar 2023 17:50:22 GMT\r\ncache-control: max-age=3600\r\nx-litespeed-tag: ea0_HTTP.200,ea0_HTTP.301,ea0_HTTP.301\r\nx-redirect-by: WordPress\r\nlocation: https://globalwatchonline.com/it/vpn/reviews/nord-vpn/\r\nx-powered-by: PleskLin\r\n\r\nHTTP/2 200 \r\nserver: nginx\r\ndate: Tue, 14 Mar 2023 16:50:28 GMT\r\ncontent-type: text/html; charset=UTF-8\r\nx-powered-by: PHP/8.0.28\r\nx-litespeed-tag: ea0_HTTP.200\r\nx-pingback: https://globalwatchonline.com/xmlrpc.php\r\nx-ua-compatible: IE=edge\r\nlink: <https://globalwatchonline.com/it/wp-json/>; rel="https://api.w.org/", <https://globalwatchonline.com/it/wp-json/wp/v2/posts/74>; rel="alternate"; type="application/json", <https://globalwatchonline.com/it/?p=74>; rel=shortlink\r\nx-powered-by: PleskLin\r\n\r\nRequest headers\n================\nGET /it/vpn/reviews/nord-vpn/ HTTP/2\r\nHost: globalwatchonline.com\r\nuser-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36\r\naccept: */*\r\nreferer: https://supportfazilsay.com\r\nconnection: close\r\nrange: bytes=0-2048\r\nx-newrelic-id: VwUGU1RbChACUFVWAAUAUlA=\r\nx-newrelic-transaction: PxQPVFFTCgYBAQQHVFIBXlIHFB8EBw8RVU4aWg0PBAAGVFwEVAJQVFwAAUNKQVlWU1RXBA4AFTs=\r\n\r\n\nLink is valid.',200,'','',7.35011,0,0,0,1,0,'200|0|0|https://globalwatchonline.com/it/vpn/reviews/nord-vpn/',0,0),(6,'https://www.globalwatchonline.com/fr/vpn/guide/meilleur-vpn/','0000-00-00 00:00:00','2023-03-14 16:50:07','2023-03-14 16:50:07','2023-03-14 16:50:07',0,'https://globalwatchonline.com/fr/vpn/guide/meilleur-vpn/',1,'=== HTTP code : 200 ===\n\nResponse headers\n================\nHTTP/2 301 \r\nserver: nginx\r\ndate: Tue, 14 Mar 2023 16:50:10 GMT\r\ncontent-type: text/html; charset=UTF-8\r\nx-powered-by: PHP/8.0.28\r\nx-pingback: https://globalwatchonline.com/xmlrpc.php\r\nx-ua-compatible: IE=edge\r\nexpires: Tue, 14 Mar 2023 17:50:10 GMT\r\ncache-control: max-age=3600\r\nx-litespeed-tag: ea0_HTTP.200,ea0_HTTP.301,ea0_HTTP.301\r\nx-redirect-by: WordPress\r\nlocation: https://globalwatchonline.com/fr/vpn/guide/meilleur-vpn/\r\nx-powered-by: PleskLin\r\n\r\nHTTP/2 200 \r\nserver: nginx\r\ndate: Tue, 14 Mar 2023 16:50:16 GMT\r\ncontent-type: text/html; charset=UTF-8\r\nx-powered-by: PHP/8.0.28\r\nx-litespeed-tag: ea0_HTTP.200\r\nx-pingback: https://globalwatchonline.com/xmlrpc.php\r\nx-ua-compatible: IE=edge\r\nlink: <https://globalwatchonline.com/fr/wp-json/>; rel="https://api.w.org/", <https://globalwatchonline.com/fr/wp-json/wp/v2/posts/486>; rel="alternate"; type="application/json", <https://globalwatchonline.com/fr/?p=486>; rel=shortlink\r\nx-powered-by: PleskLin\r\n\r\nRequest headers\n================\nGET /fr/vpn/guide/meilleur-vpn/ HTTP/2\r\nHost: globalwatchonline.com\r\nuser-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36\r\naccept: */*\r\nreferer: https://supportfazilsay.com\r\nconnection: close\r\nrange: bytes=0-2048\r\nx-newrelic-id: VwUGU1RbChACUFVWAAUAUlA=\r\nx-newrelic-transaction: PxQPVFFTCgYBAQQHVFIBXlIHFB8EBw8RVU4aWg0PBAAGVFwEVAJQVFwAAUNKQVlWU1RXBA4AFTs=\r\n\r\n\nLink is valid.',200,'','',7.263,0,0,0,1,0,'200|0|0|https://globalwatchonline.com/fr/vpn/guide/meilleur-vpn/',0,0),(7,'https://www.bitcoinexchangenederland.nl/shiba-inu/','0000-00-00 00:00:00','2023-03-14 16:50:28','2023-03-14 16:50:28','2023-03-14 16:50:28',0,'https://www.bitcoinexchangenederland.nl/shiba-inu-koersverwachting/',1,'=== HTTP code : 200 ===\n\nResponse headers\n================\nHTTP/2 301 \r\ncontent-type: text/html\r\nlocation: https://www.bitcoinexchangenederland.nl/shiba-inu-koersverwachting/\r\nx-powered-by: PleskLin\r\nx-litespeed-tag: d1c_\r\ncontent-length: 707\r\ndate: Tue, 14 Mar 2023 16:50:29 GMT\r\nserver: LiteSpeed\r\nx-qc-pop: EU-NL-AMS-357\r\nalt-svc: h3=":443"; ma=2592000, h3-29=":443"; ma=2592000, h3-Q050=":443"; ma=2592000, h3-Q046=":443"; ma=2592000, h3-Q043=":443"; ma=2592000, quic=":443"; ma=2592000; v="43,46"\r\n\r\nHTTP/2 200 \r\nx-powered-by: PHP/7.4.33\r\ncontent-type: text/html; charset=UTF-8\r\nlink: <https://www.bitcoinexchangenederland.nl/wp-json/>; rel="https://api.w.org/"\r\nlink: <https://www.bitcoinexchangenederland.nl/wp-json/wp/v2/pages/62532>; rel="alternate"; type="application/json"\r\nlink: <https://www.bitcoinexchangenederland.nl/?p=62532>; rel=shortlink\r\nvary: Accept-Encoding\r\nx-powered-by: PleskLin\r\nx-litespeed-tag: d1c_\r\ndate: Tue, 14 Mar 2023 16:50:29 GMT\r\nserver: LiteSpeed\r\nx-qc-pop: EU-NL-AMS-357\r\nalt-svc: h3=":443"; ma=2592000, h3-29=":443"; ma=2592000, h3-Q050=":443"; ma=2592000, h3-Q046=":443"; ma=2592000, h3-Q043=":443"; ma=2592000, quic=":443"; ma=2592000; v="43,46"\r\n\r\nRequest headers\n================\nGET /shiba-inu-koersverwachting/ HTTP/2\r\nHost: www.bitcoinexchangenederland.nl\r\nuser-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36\r\naccept: */*\r\nreferer: https://supportfazilsay.com\r\nconnection: close\r\nrange: bytes=0-2048\r\nx-newrelic-id: VwUGU1RbChACUFVWAAUAUlA=\r\nx-newrelic-transaction: PxQPVFFTCgYBAQQHVFIBXlIHFB8EBw8RVU4aWg0PBAAGVFwEVAJQVFwAAUNKQVlWU1RXBA4AFTs=\r\n\r\n\nLink is valid.',200,'','',2.62905,0,0,0,1,0,'200|0|0|https://www.bitcoinexchangenederland.nl/shiba-inu-koersverwachting/',0,0),(8,'https://www.bitcoinexchangenederland.nl/ripple/','0000-00-00 00:00:00','2023-03-14 16:50:31','2023-03-14 16:50:31','2023-03-14 16:50:31',0,'https://www.bitcoinexchangenederland.nl/ripple/',0,'=== HTTP code : 200 ===\n\nResponse headers\n================\nHTTP/2 200 \r\nx-powered-by: PHP/7.4.33\r\ncontent-type: text/html; charset=UTF-8\r\nlink: <https://www.bitcoinexchangenederland.nl/wp-json/>; rel="https://api.w.org/"\r\nlink: <https://www.bitcoinexchangenederland.nl/wp-json/wp/v2/pages/62532>; rel="alternate"; type="application/json"\r\nlink: <https://www.bitcoinexchangenederland.nl/?p=62532>; rel=shortlink\r\nx-powered-by: PleskLin\r\nx-litespeed-tag: d1c_\r\ndate: Tue, 14 Mar 2023 16:50:32 GMT\r\nserver: LiteSpeed\r\nx-qc-pop: EU-NL-AMS-357\r\nalt-svc: h3=":443"; ma=2592000, h3-29=":443"; ma=2592000, h3-Q050=":443"; ma=2592000, h3-Q046=":443"; ma=2592000, h3-Q043=":443"; ma=2592000, quic=":443"; ma=2592000; v="43,46"\r\n\r\nRequest headers\n================\nHEAD /ripple/ HTTP/2\r\nHost: www.bitcoinexchangenederland.nl\r\nuser-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36\r\naccept: */*\r\nreferer: https://supportfazilsay.com\r\nconnection: close\r\nx-newrelic-id: VwUGU1RbChACUFVWAAUAUlA=\r\nx-newrelic-transaction: PxQPVFFTCgYBAQQHVFIBXlIHFB8EBw8RVU4aWg0PBAAGVFwEVAJQVFwAAUNKQVlWU1RXBA4AFTs=\r\n\r\n\nLink is valid.',200,'','',0.40614,0,0,0,1,0,'200|0|0|https://www.bitcoinexchangenederland.nl/ripple/',0,0),(9,'https://moveco.io/','0000-00-00 00:00:00','2023-03-14 16:50:19','2023-03-14 16:50:19','2023-03-14 16:50:19',0,'https://moveco.io/',0,'=== HTTP code : 200 ===\n\nResponse headers\n================\nHTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Tue, 14 Mar 2023 16:50:19 GMT\r\nContent-Type: text/html; charset=UTF-8\r\nConnection: close\r\nX-Powered-By: PHP/7.4.33\r\nCache-Control: private, must-revalidate\r\npragma: no-cache\r\nexpires: -1\r\nSet-Cookie: lang=en; expires=Thu, 13-Apr-2023 16:50:19 GMT; Max-Age=2592000; path=/\r\nSet-Cookie: XSRF-TOKEN=eyJpdiI6IlB3TlZGTjhxQ1QzaGhORkdMVmxQZHc9PSIsInZhbHVlIjoiTkJCeVR0QnpJdmhnazFJMWFoRU91cE91YkI0MzF3QXZNV3NBMjZvcVwvMzNIXC9HVzRtZFhBeWdzUmxJNGhhR3ZQIiwibWFjIjoiMzNiMzFlNmJmZWE4ZTdiZTFmN2RmZTYyNGRiNTVlNDc2MWQ5NTBiZDFkYWQxYTdmZmEyMzI2YWYyZjgwMjRiZCJ9; expires=Tue, 14-Mar-2023 18:50:19 GMT; Max-Age=7200; path=/\r\nSet-Cookie: crypto_friends_session=eyJpdiI6IkRtNzVZek9RMk1cL2RNVm9oZG5qUjBRPT0iLCJ2YWx1ZSI6Ijh1MEJQNjBTZUJEbTFDek1KdHhOSXNQS0J6WHo3SE9OWVF6ZVdwYjRmOEwxb3VtYm9ndTJpc3czVXU0WEN3Z0EiLCJtYWMiOiI2ZGQwMThiMzdjZmY3YjAzYTM1ODFkOWYxMzNmYTYyNTQ2ZDIzMjJiNzk2ZWRhYjEzNWE2Nzc4OWM3YjUzN2VlIn0%3D; expires=Tue, 14-Mar-2023 18:50:19 GMT; Max-Age=7200; path=/; httponly\r\nX-Powered-By: PleskLin\r\n\r\nRequest headers\n================\nHEAD / HTTP/1.1\r\nHost: moveco.io\r\nUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36\r\nAccept: */*\r\nReferer: https://supportfazilsay.com\r\nConnection: close\r\nX-NewRelic-ID: VwUGU1RbChACUFVWAAUAUlA=\r\nX-NewRelic-Transaction: PxQPVFFTCgYBAQQHVFIBXlIHFB8EBw8RVU4aWg0PBAAGVFwEVAJQVFwAAUNKQVlWU1RXBA4AFTs=\r\n\r\n\nLink is valid.',200,'','',0.351409,0,0,0,1,0,'200|0|0|https://moveco.io/',0,0),(10,'https://folm.io/','0000-00-00 00:00:00','2023-03-14 16:50:18','2023-03-14 16:50:18','2023-03-14 16:50:18',0,'https://folm.io/',0,'=== HTTP code : 200 ===\n\nResponse headers\n================\nHTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Tue, 14 Mar 2023 16:50:19 GMT\r\nContent-Type: text/html; charset=UTF-8\r\nConnection: close\r\nX-Powered-By: PHP/7.4.33\r\nCache-Control: private, must-revalidate\r\npragma: no-cache\r\nexpires: -1\r\nSet-Cookie: lang=en; expires=Thu, 13-Apr-2023 16:50:19 GMT; Max-Age=2592000; path=/\r\nSet-Cookie: XSRF-TOKEN=eyJpdiI6IlwvNkFEV0FJR1NFSE5sUVBoNzhIMFdBPT0iLCJ2YWx1ZSI6Im8rcUhLSGs2MGlvclBObFlsS2k2OTlcL1Zpc21rXC9qT2lrM0VcL1NaazlIbkJhS1dyWGkzdXRMV2lkb1V5S1dRM0kiLCJtYWMiOiIzZTY0ZTUxNTRlNjgxYmM3OTI4ODgyZjhiZGIwNTY0M2ZiYjRhNjFlNmU2NmMxNTdhZWUwMTZkN2RhMGVlNzM5In0%3D; expires=Tue, 14-Mar-2023 18:50:19 GMT; Max-Age=7200; path=/\r\nSet-Cookie: folm_session=eyJpdiI6IlM3dzN5dncrdlRPYmUzZzluVmdlb1E9PSIsInZhbHVlIjoiSzJxbmh1TDJ2UkM4T3N5SEoxMHE2QW5JY1pUT3VKRVFzRE9Gc3hSVXM3QXhEOWE0NWk5R3I1TW5EYmg2MSsrdiIsIm1hYyI6ImQyNWIzY2QxYTY0YTQ3YWRkMjcyNWRlNmY2YzA2ZTkzN2M0NTc4NWYxOTc5Y2IxNDAzMWNhNTAyN2JiMWQxN2YifQ%3D%3D; expires=Tue, 14-Mar-2023 18:50:19 GMT; Max-Age=7200; path=/; httponly\r\nX-Powered-By: PleskLin\r\n\r\nRequest headers\n================\nHEAD / HTTP/1.1\r\nHost: folm.io\r\nUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36\r\nAccept: */*\r\nReferer: https://supportfazilsay.com\r\nConnection: close\r\nX-NewRelic-ID: VwUGU1RbChACUFVWAAUAUlA=\r\nX-NewRelic-Transaction: PxQPVFFTCgYBAQQHVFIBXlIHFB8EBw8RVU4aWg0PBAAGVFwEVAJQVFwAAUNKQVlWU1RXBA4AFTs=\r\n\r\n\nLink is valid.',200,'','',0.376596,0,0,0,1,0,'200|0|0|https://folm.io/',0,0),(11,'https://currencyconverters.org/nl/cryptocurrencies\'','2021-12-28 12:39:27','2023-03-14 16:50:07','0000-00-00 00:00:00','2023-03-14 16:50:07',77,'https://currencyconverters.org/nl/cryptocurrencies%27',0,'=== HTTP code : 500 ===\n\nResponse headers\n================\nHTTP/2 500 \r\nx-powered-by: PHP/7.4.33\r\ncache-control: no-cache, private\r\ndate: Tue, 14 Mar 2023 16:50:07 GMT\r\nset-cookie: XSRF-TOKEN=eyJpdiI6Ill0MlwvQkp4KzZYZjR4Y1wvK1B0XC9XNFE9PSIsInZhbHVlIjoiNkE1WmdWTThyeFRhN2twWDlSbWlJVWl0Z1k5RExkQWM5dERiU29abnozd3BKOEJnVG02YWZ2bThUa1czcUw5cCIsIm1hYyI6ImUzYjNjMGFlNTI5MGViMjQwMDg5YzVhNjYxYmQyMmIxM2FhN2MxNTA5MjA1OWZhZGJiNzRmNzA5M2M3YjIxMTIifQ%3D%3D; expires=Tue, 14-Mar-2023 18:50:07 GMT; Max-Age=7200; path=/\r\nset-cookie: currencyconverters_session=eyJpdiI6IjVUN3FjSnJ6bTlVNEphMlRMcndlR3c9PSIsInZhbHVlIjoiR2Z4NFJuZUJrV0x3TWxRQkx6S1JEV2o1YWxTbFNpdWlpOVJhQ3pwOGNycW5QOVFIVjJEcmlaeU5vbEN3a05kbiIsIm1hYyI6IjUwOGQzNjcyOTg5MzU0OWUwOWYzNGRjZGY0MjMzZDhhMjAxN2VlYWRiNDk4NWEwOTYzYWFkYzlmODFlYTRkZWQifQ%3D%3D; expires=Tue, 14-Mar-2023 18:50:07 GMT; Max-Age=7200; path=/; httponly\r\nvary: Accept-Encoding,User-Agent\r\ncontent-type: text/html; charset=UTF-8\r\nserver: Apache/2\r\n\r\nRequest headers\n================\nGET /nl/cryptocurrencies%27 HTTP/2\r\nHost: currencyconverters.org\r\nuser-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36\r\naccept: */*\r\nreferer: https://supportfazilsay.com\r\nconnection: close\r\nrange: bytes=0-2048\r\nx-newrelic-id: VwUGU1RbChACUFVWAAUAUlA=\r\nx-newrelic-transaction: PxQPVFFTCgYBAQQHVFIBXlIHFB8EBw8RVU4aWg0PBAAGVFwEVAJQVFwAAUNKQVlWU1RXBA4AFTs=\r\n\r\nResponse HTML\n================\n<!doctype html>\n<html lang="en">\n <head>\n <title>Error</title>\n\n <meta charset="utf-8">\n <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">\n\n <!-- Fonts -->\n <link rel="dns-prefetch" href="//fonts.gstatic.com">\n <link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet" type="text/css">\n\n <!-- Styles -->\n <style>\n html {\n line-height: 1.15;\n -ms-text-size-adjust: 100%;\n -webkit-text-size-adjust: 100%;\n }\n\n body {\n margin: 0;\n }\n\n header,\n nav,\n section {\n display: block;\n }\n\n figcaption,\n main {\n display: block;\n }\n\n a {\n background-color: transparent;\n -webkit-text-decoration-skip: objects;\n }\n\n strong {\n font-weight: inherit;\n }\n\n strong {\n font-weight: bolder;\n }\n\n code {\n font-family: monospace, monospace;\n font-size: 1em;\n }\n\n dfn {\n font-style: italic;\n }\n\n svg:not(:root) {\n overflow: hidden;\n }\n\n button,\n input {\n font-family: sans-serif;\n font-size: 100%;\n line-height: 1.15;\n margin: 0;\n }\n\n button,\n input {\n overflow: visible;\n }\n\n button {\n text-transform: none;\n }\n\n button,\n html [type="button"],\n [type="reset"],\n [type="submit"] {\n -webkit-appearance: button;\n }\n\n button::-moz-focus-inner,\n [type="button"]::-moz-focus-inner,\n [type="reset"]::-moz-focus-inner,\n [type="submit"]::-moz-focus-inner {\n border-style: none;\n padding: 0;\n }\n\n button:-moz-focusring,\n [type="button"]:-moz-focusring,\n [type="reset"]:-moz-focusring,\n [type="s\nLink is broken.',500,'','',0.300704,0,1,0,1,0,'500|broken|0|https://currencyconverters.org/nl/cryptocurrencies%27',0,0),(12,'https://currencyconverters.org/pt/cryptocurrencies','0000-00-00 00:00:00','2023-03-14 16:50:32','2023-03-14 16:50:32','2023-03-14 16:50:32',0,'https://currencyconverters.org/pt/cryptocurrencies',0,'=== HTTP code : 200 ===\n\nResponse headers\n================\nHTTP/2 200 \r\nx-powered-by: PHP/7.4.33\r\ncache-control: no-cache, private\r\ndate: Tue, 14 Mar 2023 16:50:32 GMT\r\nset-cookie: lang=pt; expires=Thu, 13-Apr-2023 16:50:32 GMT; Max-Age=2592000; path=/\r\nset-cookie: XSRF-TOKEN=eyJpdiI6IjA5UVpSTk8yTjRHdHJuYXlIeXJcL0dRPT0iLCJ2YWx1ZSI6InEwSEhVYTYwZzlmQWFueTk2QzR6VlFOQTh0MWhVckIzYlg4MXRhT3Q0Yk5tamN2amtUbUZcL3ZrUFlKdWlTb0lZIiwibWFjIjoiMTcyZWM3NzYyMzFlMmJkMDI4YTk5NmUxMTI5NWQ0ZmVkZGRiZDA5YzYxMzUzNWIxZWRhN2Y1NGFiYjI0YThlMCJ9; expires=Tue, 14-Mar-2023 18:50:32 GMT; Max-Age=7200; path=/\r\nset-cookie: currencyconverters_session=eyJpdiI6IjhOOVJPZ1hFZ0JoZ2V1UWZwa25TREE9PSIsInZhbHVlIjoiWE9aQ2tMRnFcL3RNTklZclZzNlVmOVJKZzNPSjhHWENKQitBNUNwS1NXcm1ZK09ac29jR2h3M01BWkUyWFlUR0MiLCJtYWMiOiJlODMxYWNlNmE5NmY1NjNlOTE2NzU2MTI3NTA2NjUzZGZhZjY5ZTEzMGQ2NzM3YzM4NzY5YjM4NTg1MWRhZGVhIn0%3D; expires=Tue, 14-Mar-2023 18:50:32 GMT; Max-Age=7200; path=/; httponly\r\nvary: User-Agent\r\ncontent-type: text/html; charset=UTF-8\r\nserver: Apache/2\r\n\r\nRequest headers\n================\nHEAD /pt/cryptocurrencies HTTP/2\r\nHost: currencyconverters.org\r\nuser-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36\r\naccept: */*\r\nreferer: https://supportfazilsay.com\r\nconnection: close\r\nx-newrelic-id: VwUGU1RbChACUFVWAAUAUlA=\r\nx-newrelic-transaction: PxQPVFFTCgYBAQQHVFIBXlIHFB8EBw8RVU4aWg0PBAAGVFwEVAJQVFwAAUNKQVlWU1RXBA4AFTs=\r\n\r\n\nLink is valid.',200,'','',0.481681,0,0,0,1,0,'200|0|0|https://currencyconverters.org/pt/cryptocurrencies',0,0);
/*!40000 ALTER TABLE `wp_blc_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_blc_synch`
--
DROP TABLE IF EXISTS `wp_blc_synch`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_blc_synch` (
`container_id` int unsigned NOT NULL,
`container_type` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`synched` tinyint unsigned NOT NULL,
`last_synch` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`container_type`,`container_id`),
KEY `synched` (`synched`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_blc_synch`
--
LOCK TABLES `wp_blc_synch` WRITE;
/*!40000 ALTER TABLE `wp_blc_synch` DISABLE KEYS */;
INSERT INTO `wp_blc_synch` VALUES (12,'page',1,'2020-08-22 11:08:31'),(14,'page',1,'2020-08-22 12:19:16'),(17,'page',1,'2020-08-24 04:21:26'),(18,'page',1,'2020-08-24 04:21:26'),(19,'post',1,'2021-04-16 20:48:10'),(62,'post',1,'2021-04-27 15:05:33'),(68,'post',1,'2021-06-17 06:19:58'),(74,'post',1,'2021-09-20 12:50:35'),(77,'post',1,'2021-09-23 14:17:55'),(85,'post',1,'2021-12-28 12:39:26');
/*!40000 ALTER TABLE `wp_blc_synch` 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_contact_bank`
--
DROP TABLE IF EXISTS `wp_contact_bank`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_contact_bank` (
`id` int NOT NULL AUTO_INCREMENT,
`type` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`parent_id` int DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_contact_bank`
--
LOCK TABLES `wp_contact_bank` WRITE;
/*!40000 ALTER TABLE `wp_contact_bank` DISABLE KEYS */;
INSERT INTO `wp_contact_bank` VALUES (1,'forms',0),(2,'custom_css',0),(3,'collation_type',0),(4,'general_settings',0),(5,'roles_and_capabilities',0),(6,'form',1);
/*!40000 ALTER TABLE `wp_contact_bank` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_contact_bank_meta`
--
DROP TABLE IF EXISTS `wp_contact_bank_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_contact_bank_meta` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`meta_id` int NOT NULL,
`meta_key` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`old_form_id` int NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_contact_bank_meta`
--
LOCK TABLES `wp_contact_bank_meta` WRITE;
/*!40000 ALTER TABLE `wp_contact_bank_meta` DISABLE KEYS */;
INSERT INTO `wp_contact_bank_meta` VALUES (1,2,'custom_css','a:1:{s:10:\"custom_css\";s:0:\"\";}',2),(2,4,'general_settings','a:8:{s:26:\"remove_tables_at_uninstall\";s:6:\"enable\";s:17:\"automatic_updates\";s:7:\"disable\";s:16:\"default_currency\";s:3:\"USD\";s:18:\"language_direction\";s:13:\"left_to_right\";s:20:\"recaptcha_public_key\";s:0:\"\";s:21:\"recaptcha_private_key\";s:0:\"\";s:15:\"gdpr_compliance\";s:6:\"enable\";s:20:\"gdpr_compliance_text\";s:87:\"By using this form you agree with the storage and handling of your data by this website\";}',4),(3,5,'roles_and_capabilities','a:10:{s:22:\"roles_and_capabilities\";s:11:\"1,1,1,0,0,0\";s:30:\"show_contact_bank_top_bar_menu\";s:6:\"enable\";s:30:\"others_full_control_capability\";s:1:\"0\";s:24:\"administrator_privileges\";s:19:\"1,1,1,1,1,1,1,1,1,1\";s:17:\"author_privileges\";s:19:\"0,1,1,0,0,0,1,0,0,1\";s:17:\"editor_privileges\";s:19:\"0,0,0,1,0,1,0,0,0,0\";s:22:\"contributor_privileges\";s:19:\"0,0,0,1,0,0,1,0,0,0\";s:21:\"subscriber_privileges\";s:19:\"0,0,0,0,0,0,0,0,0,0\";s:16:\"other_privileges\";s:19:\"0,0,0,0,0,0,0,0,0,0\";s:12:\"capabilities\";a:7:{i:0;s:14:\"manage_options\";i:1;s:12:\"edit_plugins\";i:2;s:10:\"edit_posts\";i:3;s:13:\"publish_posts\";i:4;s:13:\"publish_pages\";i:5;s:10:\"edit_pages\";i:6;s:4:\"read\";}}',5),(4,6,'form_data','a:15:{s:10:\"form_title\";s:15:\"Contact Us Form\";s:16:\"form_description\";s:0:\"\";s:29:\"form_submission_limit_message\";s:7:\"disable\";s:23:\"form_submission_message\";s:36:\"Your Forms Submission Limit is Over.\";s:20:\"form_success_message\";s:42:\"Your Form has been Successfully Submitted.\";s:19:\"form_enable_tooltip\";s:4:\"show\";s:13:\"form_redirect\";s:4:\"page\";s:17:\"form_redirect_url\";s:0:\"\";s:22:\"form_redirect_page_url\";s:0:\"\";s:26:\"form_save_submission_to_db\";s:6:\"enable\";s:21:\"form_submission_limit\";s:2:\"10\";s:24:\"layout_settings_template\";s:40:\"layout_settings_contact_us_form_template\";s:8:\"controls\";a:4:{i:0;a:54:{s:12:\"control_type\";s:10:\"first_name\";s:10:\"label_name\";s:4:\"Name\";s:17:\"field_description\";s:0:\"\";s:13:\"label_tooltip\";s:55:\"In this field,you would need to provide your First Name\";s:15:\"label_placement\";s:5:\"above\";s:15:\"number_of_stars\";s:0:\"\";s:11:\"placeholder\";s:30:\"Please provide your first name\";s:25:\"custom_validation_message\";s:23:\"This field is Required!\";s:11:\"rows_number\";s:2:\"10\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:13:\"required_type\";s:6:\"enable\";s:18:\"input_limit_number\";s:0:\"\";s:11:\"text_appear\";s:0:\"\";s:15:\"input_mask_type\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"input_validation_type\";s:0:\"\";s:17:\"autocomplete_type\";s:6:\"enable\";s:13:\"disable_input\";s:7:\"disable\";s:11:\"date_format\";s:0:\"\";s:10:\"start_year\";s:0:\"\";s:8:\"end_year\";s:0:\"\";s:20:\"default_current_date\";s:0:\"\";s:10:\"max_number\";s:0:\"\";s:10:\"min_number\";s:0:\"\";s:4:\"step\";s:0:\"\";s:23:\"drop_down_option_values\";a:0:{}s:9:\"field_key\";s:31:\"first_name_field_key_1598093912\";s:13:\"default_value\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:5:\"price\";s:0:\"\";s:11:\"time_format\";s:0:\"\";s:12:\"current_time\";s:0:\"\";s:12:\"product_name\";s:0:\"\";s:18:\"credit_card_number\";s:0:\"\";s:23:\"credit_card_expiry_date\";s:0:\"\";s:15:\"credit_card_cvv\";s:0:\"\";s:23:\"credit_card_placeholder\";s:0:\"\";s:30:\"credit_card_expiry_placeholder\";s:0:\"\";s:27:\"credit_card_cvv_placeholder\";s:0:\"\";s:19:\"html_editor_content\";s:0:\"\";s:16:\"html_editor_type\";s:0:\"\";s:29:\"html_editor_content_duplicate\";s:0:\"\";s:13:\"shipping_cost\";s:0:\"\";s:15:\"antispam_answer\";s:0:\"\";s:12:\"maximum_size\";s:0:\"\";s:9:\"extension\";s:0:\"\";s:15:\"multiple_upload\";s:0:\"\";s:15:\"attach_to_email\";s:0:\"\";s:9:\"timestamp\";i:1598093912;s:38:\"logical_captcha_mathmatical_operations\";s:0:\"\";s:25:\"logical_captcha_artimatic\";s:0:\"\";s:26:\"logical_captcha_relational\";s:0:\"\";s:29:\"logical_captcha_arrange_order\";s:0:\"\";}i:1;a:54:{s:12:\"control_type\";s:5:\"email\";s:10:\"label_name\";s:5:\"Email\";s:17:\"field_description\";s:0:\"\";s:13:\"label_tooltip\";s:59:\"In this field, you would need to provide your Email Address\";s:15:\"label_placement\";s:5:\"above\";s:15:\"number_of_stars\";s:0:\"\";s:11:\"placeholder\";s:33:\"Please provide your email address\";s:25:\"custom_validation_message\";s:23:\"This field is Required!\";s:11:\"rows_number\";s:2:\"10\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:13:\"required_type\";s:6:\"enable\";s:18:\"input_limit_number\";s:0:\"\";s:11:\"text_appear\";s:0:\"\";s:15:\"input_mask_type\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"input_validation_type\";s:0:\"\";s:17:\"autocomplete_type\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"date_format\";s:0:\"\";s:10:\"start_year\";s:0:\"\";s:8:\"end_year\";s:0:\"\";s:20:\"default_current_date\";s:0:\"\";s:10:\"max_number\";s:0:\"\";s:10:\"min_number\";s:0:\"\";s:4:\"step\";s:0:\"\";s:23:\"drop_down_option_values\";a:0:{}s:9:\"field_key\";s:34:\"email_address_field_key_1598093913\";s:13:\"default_value\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:5:\"price\";s:0:\"\";s:11:\"time_format\";s:0:\"\";s:12:\"current_time\";s:0:\"\";s:12:\"product_name\";s:0:\"\";s:18:\"credit_card_number\";s:0:\"\";s:23:\"credit_card_expiry_date\";s:0:\"\";s:15:\"credit_card_cvv\";s:0:\"\";s:23:\"credit_card_placeholder\";s:0:\"\";s:30:\"credit_card_expiry_placeholder\";s:0:\"\";s:27:\"credit_card_cvv_placeholder\";s:0:\"\";s:19:\"html_editor_content\";s:0:\"\";s:16:\"html_editor_type\";s:0:\"\";s:29:\"html_editor_content_duplicate\";s:0:\"\";s:13:\"shipping_cost\";s:0:\"\";s:15:\"antispam_answer\";s:0:\"\";s:12:\"maximum_size\";s:0:\"\";s:9:\"extension\";s:0:\"\";s:15:\"multiple_upload\";s:0:\"\";s:15:\"attach_to_email\";s:0:\"\";s:9:\"timestamp\";i:1598093913;s:38:\"logical_captcha_mathmatical_operations\";s:0:\"\";s:25:\"logical_captcha_artimatic\";s:0:\"\";s:26:\"logical_captcha_relational\";s:0:\"\";s:29:\"logical_captcha_arrange_order\";s:0:\"\";}i:2;a:54:{s:12:\"control_type\";s:4:\"text\";s:10:\"label_name\";s:7:\"Subject\";s:17:\"field_description\";s:0:\"\";s:13:\"label_tooltip\";s:53:\"In this field, you would need to provide your Subject\";s:15:\"label_placement\";s:5:\"above\";s:15:\"number_of_stars\";s:0:\"\";s:11:\"placeholder\";s:27:\"Please provide your subject\";s:25:\"custom_validation_message\";s:23:\"This field is Required!\";s:11:\"rows_number\";s:2:\"10\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:13:\"required_type\";s:7:\"disable\";s:18:\"input_limit_number\";s:2:\"50\";s:11:\"text_appear\";s:17:\"Character(s) left\";s:15:\"input_mask_type\";s:4:\"none\";s:11:\"custom_mask\";s:15:\"999,999,999,999\";s:21:\"input_validation_type\";s:10:\"characters\";s:17:\"autocomplete_type\";s:6:\"enable\";s:13:\"disable_input\";s:7:\"disable\";s:11:\"date_format\";s:0:\"\";s:10:\"start_year\";s:0:\"\";s:8:\"end_year\";s:0:\"\";s:20:\"default_current_date\";s:0:\"\";s:10:\"max_number\";s:0:\"\";s:10:\"min_number\";s:0:\"\";s:4:\"step\";s:0:\"\";s:23:\"drop_down_option_values\";a:0:{}s:9:\"field_key\";s:37:\"single_line_text_field_key_1598093914\";s:13:\"default_value\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:5:\"price\";s:0:\"\";s:11:\"time_format\";s:0:\"\";s:12:\"current_time\";s:0:\"\";s:12:\"product_name\";s:0:\"\";s:18:\"credit_card_number\";s:0:\"\";s:23:\"credit_card_expiry_date\";s:0:\"\";s:15:\"credit_card_cvv\";s:0:\"\";s:23:\"credit_card_placeholder\";s:0:\"\";s:30:\"credit_card_expiry_placeholder\";s:0:\"\";s:27:\"credit_card_cvv_placeholder\";s:0:\"\";s:19:\"html_editor_content\";s:0:\"\";s:16:\"html_editor_type\";s:0:\"\";s:29:\"html_editor_content_duplicate\";s:0:\"\";s:13:\"shipping_cost\";s:0:\"\";s:15:\"antispam_answer\";s:0:\"\";s:12:\"maximum_size\";s:0:\"\";s:9:\"extension\";s:0:\"\";s:15:\"multiple_upload\";s:0:\"\";s:15:\"attach_to_email\";s:0:\"\";s:9:\"timestamp\";i:1598093914;s:38:\"logical_captcha_mathmatical_operations\";s:0:\"\";s:25:\"logical_captcha_artimatic\";s:0:\"\";s:26:\"logical_captcha_relational\";s:0:\"\";s:29:\"logical_captcha_arrange_order\";s:0:\"\";}i:3;a:54:{s:12:\"control_type\";s:9:\"paragraph\";s:10:\"label_name\";s:7:\"Message\";s:17:\"field_description\";s:0:\"\";s:13:\"label_tooltip\";s:53:\"In this field, you would need to provide your Message\";s:15:\"label_placement\";s:5:\"above\";s:15:\"number_of_stars\";s:0:\"\";s:11:\"placeholder\";s:32:\"Please provide your message here\";s:25:\"custom_validation_message\";s:23:\"This field is Required!\";s:11:\"rows_number\";s:2:\"10\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:13:\"required_type\";s:7:\"disable\";s:18:\"input_limit_number\";s:3:\"255\";s:11:\"text_appear\";s:17:\"Character(s) left\";s:15:\"input_mask_type\";s:4:\"none\";s:11:\"custom_mask\";s:15:\"999,999,999,999\";s:21:\"input_validation_type\";s:10:\"characters\";s:17:\"autocomplete_type\";s:6:\"enable\";s:13:\"disable_input\";s:7:\"disable\";s:11:\"date_format\";s:0:\"\";s:10:\"start_year\";s:0:\"\";s:8:\"end_year\";s:0:\"\";s:20:\"default_current_date\";s:0:\"\";s:10:\"max_number\";s:0:\"\";s:10:\"min_number\";s:0:\"\";s:4:\"step\";s:0:\"\";s:23:\"drop_down_option_values\";a:0:{}s:9:\"field_key\";s:35:\"paragraph_text_field_key_1598093915\";s:13:\"default_value\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:5:\"price\";s:0:\"\";s:11:\"time_format\";s:0:\"\";s:12:\"current_time\";s:0:\"\";s:12:\"product_name\";s:0:\"\";s:18:\"credit_card_number\";s:0:\"\";s:23:\"credit_card_expiry_date\";s:0:\"\";s:15:\"credit_card_cvv\";s:0:\"\";s:23:\"credit_card_placeholder\";s:0:\"\";s:30:\"credit_card_expiry_placeholder\";s:0:\"\";s:27:\"credit_card_cvv_placeholder\";s:0:\"\";s:19:\"html_editor_content\";s:0:\"\";s:16:\"html_editor_type\";s:0:\"\";s:29:\"html_editor_content_duplicate\";s:0:\"\";s:13:\"shipping_cost\";s:0:\"\";s:15:\"antispam_answer\";s:0:\"\";s:12:\"maximum_size\";s:0:\"\";s:9:\"extension\";s:0:\"\";s:15:\"multiple_upload\";s:0:\"\";s:15:\"attach_to_email\";s:0:\"\";s:9:\"timestamp\";i:1598093915;s:38:\"logical_captcha_mathmatical_operations\";s:0:\"\";s:25:\"logical_captcha_artimatic\";s:0:\"\";s:26:\"logical_captcha_relational\";s:0:\"\";s:29:\"logical_captcha_arrange_order\";s:0:\"\";}}s:29:\"form_admin_notification_email\";a:10:{s:22:\"template_send_to_email\";s:24:\"[email protected]\";s:16:\"template_send_to\";s:13:\"send_to_email\";s:22:\"template_send_to_field\";s:0:\"\";s:11:\"template_cc\";s:0:\"\";s:12:\"template_bcc\";s:0:\"\";s:18:\"template_from_name\";s:19:\"Site Administration\";s:19:\"template_from_email\";s:24:\"[email protected]\";s:17:\"template_reply_to\";s:0:\"\";s:16:\"template_subject\";s:33:\"New Contact received from Website\";s:16:\"template_message\";s:397:\"<p>Hello Admin,</p><p>A new user visited your website.</p><p>Here are the details :</p><p><strong>Name</strong>: [control_1598093912]</p><p><strong>Email</strong>: [control_1598093913]</p><p><strong>Subject</strong>: [control_1598093914]</p><p><strong>Message</strong>: [control_1598093915]</p><p>Thanks,</p><p><strong>Technical Support Team</strong></p><p><strong>supportfazilsay.com</strong></p>\";}s:30:\"form_client_notification_email\";a:10:{s:22:\"template_send_to_email\";s:24:\"[email protected]\";s:16:\"template_send_to\";s:13:\"send_to_email\";s:22:\"template_send_to_field\";s:0:\"\";s:11:\"template_cc\";s:0:\"\";s:12:\"template_bcc\";s:0:\"\";s:18:\"template_from_name\";s:19:\"Site Administration\";s:19:\"template_from_email\";s:24:\"[email protected]\";s:17:\"template_reply_to\";s:0:\"\";s:16:\"template_subject\";s:31:\"Thanks for visiting our Website\";s:16:\"template_message\";s:194:\"<p>Hi,</p><p>Thanks for visiting our website. We will Contact you within next 24 hours.</p><p>Thanks,</p><p><strong>Technical Support Team</strong></p><p><strong>supportfazilsay.com</strong></p>\";}}',6),(5,6,'layout_settings','a:65:{s:33:\"layout_settings_form_design_width\";s:4:\"100%\";s:36:\"layout_settings_form_design_position\";s:4:\"left\";s:44:\"layout_settings_form_design_background_color\";s:7:\"#ffffff\";s:51:\"layout_settings_form_design_background_transparency\";s:3:\"100\";s:42:\"layout_settings_form_design_title_html_tag\";s:2:\"h1\";s:43:\"layout_settings_form_design_title_alignment\";s:4:\"left\";s:44:\"layout_settings_form_design_title_font_style\";s:10:\"24,#000000\";s:45:\"layout_settings_form_design_title_font_family\";s:15:\"Roboto Slab:700\";s:48:\"layout_settings_form_design_description_html_tag\";s:1:\"p\";s:49:\"layout_settings_form_design_description_alignment\";s:4:\"left\";s:50:\"layout_settings_form_design_description_font_style\";s:10:\"12,#000000\";s:51:\"layout_settings_form_design_description_font_family\";s:15:\"Roboto Slab:300\";s:39:\"layout_settings_form_design_form_margin\";s:7:\"0,0,0,0\";s:40:\"layout_settings_form_design_form_padding\";s:11:\"10,10,10,10\";s:40:\"layout_settings_form_design_title_margin\";s:7:\"0,0,5,0\";s:41:\"layout_settings_form_design_title_padding\";s:7:\"5,0,0,0\";s:46:\"layout_settings_form_design_description_margin\";s:7:\"0,0,5,0\";s:47:\"layout_settings_form_design_description_padding\";s:7:\"0,0,5,0\";s:33:\"layout_settings_input_field_width\";s:3:\"90%\";s:34:\"layout_settings_input_field_height\";s:4:\"100%\";s:42:\"layout_settings_input_field_text_alignment\";s:4:\"left\";s:50:\"layout_settings_input_field_radio_button_alignment\";s:10:\"single_row\";s:46:\"layout_settings_input_field_checkbox_alignment\";s:10:\"single_row\";s:38:\"layout_settings_input_field_font_style\";s:10:\"14,#000000\";s:39:\"layout_settings_input_field_font_family\";s:16:\"Roboto Condensed\";s:57:\"layout_settings_input_field_background_color_transparency\";s:11:\"#f7f7f7,100\";s:40:\"layout_settings_input_field_border_style\";s:15:\"1,solid,#d1d1d1\";s:41:\"layout_settings_input_field_border_radius\";s:1:\"2\";s:34:\"layout_settings_input_field_margin\";s:7:\"5,0,5,0\";s:35:\"layout_settings_input_field_padding\";s:11:\"10,10,10,10\";s:42:\"layout_settings_label_field_text_alignment\";s:4:\"left\";s:33:\"layout_settings_label_field_width\";s:4:\"100%\";s:34:\"layout_settings_label_field_height\";s:4:\"100%\";s:38:\"layout_settings_label_field_font_style\";s:10:\"16,#000000\";s:39:\"layout_settings_label_field_font_family\";s:16:\"Roboto Condensed\";s:57:\"layout_settings_label_field_background_color_transparency\";s:9:\"#ffffff,0\";s:34:\"layout_settings_label_field_margin\";s:7:\"0,0,0,0\";s:35:\"layout_settings_label_field_padding\";s:10:\"10,10,10,0\";s:37:\"layout_settings_button_text_alignment\";s:6:\"center\";s:27:\"layout_settings_button_text\";s:6:\"Submit\";s:28:\"layout_settings_button_width\";s:5:\"100px\";s:29:\"layout_settings_button_height\";s:4:\"100%\";s:33:\"layout_settings_button_font_style\";s:10:\"16,#ffffff\";s:34:\"layout_settings_button_font_family\";s:11:\"Roboto Slab\";s:39:\"layout_settings_button_background_color\";s:7:\"#524c52\";s:46:\"layout_settings_button_background_transparency\";s:3:\"100\";s:45:\"layout_settings_button_hover_background_color\";s:7:\"#706c70\";s:52:\"layout_settings_button_hover_background_transparency\";s:3:\"100\";s:35:\"layout_settings_button_border_style\";s:15:\"1,solid,#524c52\";s:36:\"layout_settings_button_border_radius\";s:1:\"4\";s:41:\"layout_settings_button_hover_border_color\";s:7:\"#706c70\";s:29:\"layout_settings_button_margin\";s:8:\"10,0,0,0\";s:30:\"layout_settings_button_padding\";s:11:\"10,10,10,10\";s:39:\"layout_settings_messages_text_alignment\";s:4:\"left\";s:54:\"layout_settings_messages_background_color_transparency\";s:10:\"#e5ffd5,50\";s:35:\"layout_settings_messages_font_style\";s:10:\"18,#6aa500\";s:36:\"layout_settings_messages_font_family\";s:11:\"Roboto Slab\";s:31:\"layout_settings_messages_margin\";s:7:\"0,0,0,0\";s:32:\"layout_settings_messages_padding\";s:7:\"0,0,0,0\";s:47:\"layout_settings_error_messages_background_color\";s:7:\"#ffffff\";s:54:\"layout_settings_error_messages_background_transparency\";s:2:\"50\";s:41:\"layout_settings_error_messages_font_style\";s:10:\"12,#ff2c38\";s:42:\"layout_settings_error_messages_font_family\";s:11:\"Roboto Slab\";s:37:\"layout_settings_error_messages_margin\";s:7:\"0,0,0,0\";s:38:\"layout_settings_error_messages_padding\";s:15:\"5px,0px,0px,0px\";}',6),(6,6,'submission_form_data','a:5:{i:1598093912;s:10:\"Joe Miller\";i:1598093913;s:20:\"[email protected]\";i:1598093914;s:8:\"GC2NLYD3\";i:1598093915;s:266:\"IMPORTANCE NOTICE\r\n\r\nNotice#: 491343\r\nDate: 2020-08-30 \r\n\r\nExpiration message of your supportfazilsay.com\r\n\r\nEXPIRATION NOTIFICATION\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://gohostingdomains.com/?n=supportfazilsay.com&r=a&t=1598689897&p=v1\r\n\r\nThis purchas\";s:9:\"timestamp\";i:1598689901;}',6),(7,6,'submission_form_data','a:5:{i:1598093912;s:10:\"Joe Miller\";i:1598093913;s:20:\"[email protected]\";i:1598093914;s:7:\"58SQKRH\";i:1598093915;s:266:\"IMPORTANCE NOTICE\r\n\r\nNotice#: 491343\r\nDate: 2020-10-04 \r\n\r\nExpiration message of your supportfazilsay.com\r\n\r\nEXPIRATION NOTIFICATION\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: http://gosafemydomain.com/?n=supportfazilsay.com&r=a&t=1601757665&p=v1\r\n\r\nThis purchase e\";s:9:\"timestamp\";i:1601757668;}',6),(8,6,'submission_form_data','a:5:{i:1598093912;s:10:\"Joe Miller\";i:1598093913;s:20:\"[email protected]\";i:1598093914;s:10:\"Z5MOPTNWI7\";i:1598093915;s:262:\"Notice#: 491343\r\nDate: 2021-02-11 \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN supportfazilsay.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain supportfazilsay.com\";s:9:\"timestamp\";i:1612999732;}',6),(9,6,'submission_form_data','a:5:{i:1598093912;s:10:\"Joe Miller\";i:1598093913;s:20:\"[email protected]\";i:1598093914;s:10:\"0XFJ657W64\";i:1598093915;s:262:\"Notice#: 491343\r\nDate: 2021-02-11 \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN supportmadeeasy.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain supportmadeeasy.com\";s:9:\"timestamp\";i:1612999745;}',6),(10,6,'submission_form_data','a:5:{i:1598093912;s:10:\"Joe Miller\";i:1598093913;s:20:\"[email protected]\";i:1598093914;s:10:\"HZC2DGXS7K\";i:1598093915;s:264:\"Notice#: 491343\r\nDate: 2021-02-11 \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN supportsites.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain supportsites.com\r\n\r\nWe h\";s:9:\"timestamp\";i:1612999757;}',6),(11,6,'submission_form_data','a:5:{i:1598093912;s:10:\"Joe Miller\";i:1598093913;s:20:\"[email protected]\";i:1598093914;s:10:\"TNT4PRJQKR\";i:1598093915;s:262:\"Notice#: 491343\r\nDate: 2021-02-11 \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN suppressor-warehouse.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain suppressor-war\";s:9:\"timestamp\";i:1612999771;}',6),(12,6,'submission_form_data','a:5:{i:1598093912;s:10:\"Joe Miller\";i:1598093913;s:27:\"[email protected]\";i:1598093914;s:5:\"IE4LE\";i:1598093915;s:262:\"Notice#: 491343\r\nDate: 2021-02-11 \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN supportfazilsay.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain supportfazilsay.com\";s:9:\"timestamp\";i:1613005516;}',6),(13,6,'submission_form_data','a:5:{i:1598093912;s:10:\"Joe Miller\";i:1598093913;s:20:\"[email protected]\";i:1598093914;s:10:\"UCWKMMJGTL\";i:1598093915;s:262:\"Notice#: 491343\r\nDate: 2021-02-11 \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN supportfazilsay.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain supportfazilsay.com\";s:9:\"timestamp\";i:1613009427;}',6),(14,6,'submission_form_data','a:5:{i:1598093912;s:10:\"Joe Miller\";i:1598093913;s:27:\"[email protected]\";i:1598093914;s:5:\"UYESN\";i:1598093915;s:262:\"Notice#: 491343\r\nDate: 2021-02-11 \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN supportfazilsay.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain supportfazilsay.com\";s:9:\"timestamp\";i:1613012444;}',6),(15,6,'submission_form_data','a:5:{i:1598093912;s:10:\"Joe Miller\";i:1598093913;s:20:\"[email protected]\";i:1598093914;s:10:\"IAZBZDWUVH\";i:1598093915;s:262:\"Notice#: 491343\r\nDate: 2021-02-11 \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN supportfazilsay.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain supportfazilsay.com\";s:9:\"timestamp\";i:1613018576;}',6),(16,6,'submission_form_data','a:5:{i:1598093912;s:10:\"Joe Miller\";i:1598093913;s:27:\"[email protected]\";i:1598093914;s:5:\"MLJLC\";i:1598093915;s:262:\"Notice#: 491343\r\nDate: 2021-02-11 \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN supportfazilsay.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain supportfazilsay.com\";s:9:\"timestamp\";i:1613021674;}',6),(17,6,'submission_form_data','a:5:{i:1598093912;s:10:\"Joe Miller\";i:1598093913;s:27:\"[email protected]\";i:1598093914;s:5:\"N0NYB\";i:1598093915;s:262:\"Notice#: 491343\r\nDate: 2021-02-11 \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN paddypowder4cats.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain paddypowder4cats.c\";s:9:\"timestamp\";i:1613021687;}',6),(18,6,'submission_form_data','a:5:{i:1598093912;s:10:\"Joe Miller\";i:1598093913;s:27:\"[email protected]\";i:1598093914;s:5:\"9ARRF\";i:1598093915;s:262:\"Notice#: 491343\r\nDate: 2021-02-12 \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN supportfazilsay.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain supportfazilsay.com\";s:9:\"timestamp\";i:1613033746;}',6),(19,6,'submission_form_data','a:5:{i:1598093912;s:10:\"Joe Miller\";i:1598093913;s:27:\"[email protected]\";i:1598093914;s:5:\"VFN0X\";i:1598093915;s:262:\"Notice#: 491343\r\nDate: 2021-02-12 \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN supportfazilsay.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain supportfazilsay.com\";s:9:\"timestamp\";i:1613039299;}',6),(20,6,'submission_form_data','a:5:{i:1598093912;s:10:\"Joe Miller\";i:1598093913;s:27:\"[email protected]\";i:1598093914;s:5:\"G4VV7\";i:1598093915;s:264:\"Notice#: 491343\r\nDate: 2021-02-12 \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN design-bags.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain design-bags.com\r\n\r\nWe hav\";s:9:\"timestamp\";i:1613039312;}',6),(21,6,'submission_form_data','a:5:{i:1598093912;s:10:\"Joe Miller\";i:1598093913;s:27:\"[email protected]\";i:1598093914;s:5:\"J8TLL\";i:1598093915;s:262:\"Notice#: 491343\r\nDate: 2021-02-12 \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN supportfazilsay.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain supportfazilsay.com\";s:9:\"timestamp\";i:1613046946;}',6),(22,6,'submission_form_data','a:5:{i:1598093912;s:3:\"Joe\";i:1598093913;s:27:\"[email protected]\";i:1598093914;s:16:\"IMPORTANT NOTICE\";i:1598093915;s:263:\"TERMINATION OF DOMAIN supportfazilsay.com\r\nInvoice#: 491343\r\nDate: 09 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN supportfazilsay.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN supportfazilsay.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour paym\";s:9:\"timestamp\";i:1615296467;}',6),(23,6,'submission_form_data','a:5:{i:1598093912;s:3:\"Joe\";i:1598093913;s:27:\"[email protected]\";i:1598093914;s:16:\"IMPORTANT NOTICE\";i:1598093915;s:263:\"TERMINATION OF DOMAIN supportfazilsay.com\r\nInvoice#: 491343\r\nDate: 09 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN supportfazilsay.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN supportfazilsay.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour paym\";s:9:\"timestamp\";i:1615296467;}',6),(24,6,'submission_form_data','a:5:{i:1598093912;s:3:\"Joe\";i:1598093913;s:31:\"[email protected]\";i:1598093914;s:16:\"IMPORTANT NOTICE\";i:1598093915;s:263:\"TERMINATION OF DOMAIN supportfazilsay.com\r\nInvoice#: 491343\r\nDate: 28 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN supportfazilsay.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN supportfazilsay.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour paym\";s:9:\"timestamp\";i:1616969907;}',6);
/*!40000 ALTER TABLE `wp_contact_bank_meta` 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=57984 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://supportfazilsay.com','yes'),(2,'home','http://supportfazilsay.com','yes'),(3,'blogname','SUPPORT FAZIL SAY','yes'),(4,'blogdescription','Keep moving','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','','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','','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','','yes'),(27,'moderation_notify','0','yes'),(28,'permalink_structure','/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:18:{i:0;s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";i:1;s:19:\"akismet/akismet.php\";i:2;s:91:\"all-in-one-wp-migration-multisite-extension/all-in-one-wp-migration-multisite-extension.php\";i:3;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:4;s:67:\"better-404-redirect-to-homepage/better-404-redirect-to-homepage.php\";i:5;s:43:\"broken-link-checker/broken-link-checker.php\";i:6;s:31:\"cache-enabler/cache-enabler.php\";i:7;s:33:\"classic-editor/classic-editor.php\";i:8;s:29:\"contact-bank/contact-bank.php\";i:9;s:37:\"link-whisper-premium/link-whisper.php\";i:10;s:29:\"mainwp-child/mainwp-child.php\";i:11;s:45:\"remove-footer-credit/remove-footer-credit.php\";i:12;s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";i:13;s:81:\"simple-follow-me-social-buttons-widget/simple-follow-me-social-buttons-widget.php\";i:14;s:37:\"wordpress-autoblogging/basic-auth.php\";i:15;s:24:\"wordpress-seo/wp-seo.php\";i:16;s:23:\"wp-insert/wp-insert.php\";i:17;s:41:\"xml-sitemaps-for-videos/video-sitemap.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','gloriafood-restaurant','yes'),(41,'stylesheet','gloriafood-restaurant','yes'),(44,'comment_registration','','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','','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:4:{i:0;i:68;i:1;i:74;i:2;i:77;i:3;i:85;}','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:4:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:4:{s:5:\"title\";s:8:\"Founder!\";s:4:\"text\";s:298:\"<img src=\"http://supportfazilsay.com/wp-content/uploads/2020/08/new_years_resolutions-e1598249801204.jpg\" width=\"300\" height=\"250\" />\r\n\r\nHi,I am <strong>Justin Peterson</strong>. Serving healthy snacks to children is important to providing good nutrition, supporting lifelong healthy eating habits.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:4;a:4:{s:5:\"title\";s:4:\"Ads!\";s:4:\"text\";s:205:\"<a href=\"http://www.natural-choice.com/\" rel=\"noopener\" target=\"_blank\"><img src=\"http://supportfazilsay.com/wp-content/uploads/2020/08/aeb9058f44dd1f4a35349ef9f3458b8a.jpg\" width=\"300\" height=\"250\" /></a>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:2:{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','29','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','','yes'),(93,'admin_email_lifespan','1608143821','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:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:38:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}','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:3:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;i:4;a:0:{}}','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:6:{s:19:\"wp_inactive_widgets\";a:7:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:17:\"recent-comments-2\";i:3;s:11:\"tag_cloud-2\";i:4;s:14:\"recent-posts-2\";i:5;s:12:\"categories-2\";i:6;s:8:\"search-2\";}s:12:\"glf-homepage\";a:0:{}s:11:\"footer-left\";a:1:{i:0;s:6:\"text-3\";}s:13:\"footer-middle\";a:1:{i:0;s:14:\"recent-posts-4\";}s:12:\"footer-right\";a:1:{i:0;s:6:\"text-4\";}s:13:\"array_version\";i:3;}','yes'),(103,'widget_tag_cloud','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:8:\"taxonomy\";s:8:\"post_tag\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'db-version-secure','QH8ahPZSBb','yes'),(105,'wsblc_options','{\"max_execution_time\":420,\"check_threshold\":72,\"recheck_count\":3,\"recheck_threshold\":1800,\"run_in_dashboard\":true,\"run_via_cron\":true,\"mark_broken_links\":true,\"broken_link_css\":\".broken_link, a.broken_link {\\n\\ttext-decoration: line-through;\\n}\",\"nofollow_broken_links\":false,\"mark_removed_links\":false,\"removed_link_css\":\".removed_link, a.removed_link {\\n\\ttext-decoration: line-through;\\n}\",\"exclusion_list\":[],\"send_email_notifications\":true,\"send_authors_email_notifications\":false,\"notification_email_address\":\"\",\"notification_schedule\":\"daily\",\"last_notification_sent\":1661542720,\"suggestions_enabled\":true,\"warnings_enabled\":true,\"server_load_limit\":4,\"enable_load_limit\":true,\"custom_fields\":[],\"acf_fields\":[],\"enabled_post_statuses\":[\"publish\"],\"autoexpand_widget\":true,\"dashboard_widget_capability\":\"edit_others_posts\",\"show_link_count_bubble\":true,\"table_layout\":\"flexible\",\"table_compact\":true,\"table_visible_columns\":[\"new-url\",\"status\",\"used-in\",\"new-link-text\"],\"table_links_per_page\":30,\"table_color_code_status\":true,\"need_resynch\":false,\"current_db_version\":16,\"timeout\":30,\"highlight_permanent_failures\":false,\"failure_duration_threshold\":3,\"logging_enabled\":false,\"log_file\":\"\",\"incorrect_path\":false,\"clear_log_on\":\"\",\"custom_log_file_enabled\":false,\"installation_complete\":true,\"installation_flag_cleared_on\":\"2020-06-19T18:37:04+00:00 (1592591824.2983)\",\"installation_flag_set_on\":\"2020-06-19T18:37:04+00:00 (1592591824.9685)\",\"show_link_actions\":{\"blc-deredirect-action\":false},\"youtube_api_key\":\"\",\"blc_post_modified\":\"\",\"user_has_donated\":false,\"donation_flag_fixed\":false,\"first_installation_timestamp\":1592591824,\"active_modules\":{\"http\":{\"ModuleID\":\"http\",\"ModuleCategory\":\"checker\",\"ModuleContext\":\"on-demand\",\"ModuleLazyInit\":true,\"ModuleClassName\":\"blcHttpChecker\",\"ModulePriority\":-1,\"ModuleCheckerUrlPattern\":\"\",\"ModuleHidden\":false,\"ModuleAlwaysActive\":false,\"ModuleRequiresPro\":false,\"Name\":\"Basic HTTP\",\"PluginURI\":\"\",\"Version\":\"1.0\",\"Description\":\"Check all links that have the HTTP\\/HTTPS protocol.\",\"Author\":\"Janis Elsts\",\"AuthorURI\":\"\",\"TextDomain\":\"broken-link-checker\",\"DomainPath\":\"\",\"Network\":false,\"RequiresWP\":\"\",\"RequiresPHP\":\"\",\"Title\":\"Basic HTTP\",\"AuthorName\":\"Janis Elsts\",\"file\":\"checkers\\/http.php\"},\"link\":{\"ModuleID\":\"link\",\"ModuleCategory\":\"parser\",\"ModuleContext\":\"on-demand\",\"ModuleLazyInit\":true,\"ModuleClassName\":\"blcHTMLLink\",\"ModulePriority\":1000,\"ModuleCheckerUrlPattern\":\"\",\"ModuleHidden\":false,\"ModuleAlwaysActive\":false,\"ModuleRequiresPro\":false,\"Name\":\"HTML links\",\"PluginURI\":\"\",\"Version\":\"1.0\",\"Description\":\"Example : <code><a href=\\\"http:\\/\\/example.com\\/\\\">link text<\\/a><\\/code>\",\"Author\":\"Janis Elsts\",\"AuthorURI\":\"\",\"TextDomain\":\"broken-link-checker\",\"DomainPath\":\"\",\"Network\":false,\"RequiresWP\":\"\",\"RequiresPHP\":\"\",\"Title\":\"HTML links\",\"AuthorName\":\"Janis Elsts\",\"file\":\"parsers\\/html_link.php\"},\"image\":{\"ModuleID\":\"image\",\"ModuleCategory\":\"parser\",\"ModuleContext\":\"on-demand\",\"ModuleLazyInit\":true,\"ModuleClassName\":\"blcHTMLImage\",\"ModulePriority\":900,\"ModuleCheckerUrlPattern\":\"\",\"ModuleHidden\":false,\"ModuleAlwaysActive\":false,\"ModuleRequiresPro\":false,\"Name\":\"HTML images\",\"PluginURI\":\"\",\"Version\":\"1.0\",\"Description\":\"e.g. <code><img src=\\\"http:\\/\\/example.com\\/fluffy.jpg\\\"><\\/code>\",\"Author\":\"Janis Elsts\",\"AuthorURI\":\"\",\"TextDomain\":\"broken-link-checker\",\"DomainPath\":\"\",\"Network\":false,\"RequiresWP\":\"\",\"RequiresPHP\":\"\",\"Title\":\"HTML images\",\"AuthorName\":\"Janis Elsts\",\"file\":\"parsers\\/image.php\"},\"metadata\":{\"ModuleID\":\"metadata\",\"ModuleCategory\":\"parser\",\"ModuleContext\":\"on-demand\",\"ModuleLazyInit\":true,\"ModuleClassName\":\"blcMetadataParser\",\"ModulePriority\":0,\"ModuleCheckerUrlPattern\":\"\",\"ModuleHidden\":true,\"ModuleAlwaysActive\":true,\"ModuleRequiresPro\":false,\"Name\":\"Metadata\",\"PluginURI\":\"\",\"Version\":\"1.0\",\"Description\":\"Parses metadata (AKA custom fields)\",\"Author\":\"Janis Elsts\",\"AuthorURI\":\"\",\"TextDomain\":\"broken-link-checker\",\"DomainPath\":\"\",\"Network\":false,\"RequiresWP\":\"\",\"RequiresPHP\":\"\",\"Title\":\"Metadata\",\"AuthorName\":\"Janis Elsts\",\"file\":\"parsers\\/metadata.php\"},\"url_field\":{\"ModuleID\":\"url_field\",\"ModuleCategory\":\"parser\",\"ModuleContext\":\"on-demand\",\"ModuleLazyInit\":true,\"ModuleClassName\":\"blcUrlField\",\"ModulePriority\":0,\"ModuleCheckerUrlPattern\":\"\",\"ModuleHidden\":true,\"ModuleAlwaysActive\":true,\"ModuleRequiresPro\":false,\"Name\":\"URL fields\",\"PluginURI\":\"\",\"Version\":\"1.0\",\"Description\":\"Parses data fields that contain a single, plaintext URL.\",\"Author\":\"Janis Elsts\",\"AuthorURI\":\"\",\"TextDomain\":\"broken-link-checker\",\"DomainPath\":\"\",\"Network\":false,\"RequiresWP\":\"\",\"RequiresPHP\":\"\",\"Title\":\"URL fields\",\"AuthorName\":\"Janis Elsts\",\"file\":\"parsers\\/url_field.php\"},\"comment\":{\"ModuleID\":\"comment\",\"ModuleCategory\":\"container\",\"ModuleContext\":\"all\",\"ModuleLazyInit\":false,\"ModuleClassName\":\"blcCommentManager\",\"ModulePriority\":0,\"ModuleCheckerUrlPattern\":\"\",\"ModuleHidden\":false,\"ModuleAlwaysActive\":false,\"ModuleRequiresPro\":false,\"Name\":\"Comments\",\"PluginURI\":\"\",\"Version\":\"1.0\",\"Description\":\"\",\"Author\":\"Janis Elsts\",\"AuthorURI\":\"\",\"TextDomain\":\"broken-link-checker\",\"DomainPath\":\"\",\"Network\":false,\"RequiresWP\":\"\",\"RequiresPHP\":\"\",\"Title\":\"Comments\",\"AuthorName\":\"Janis Elsts\",\"file\":\"containers\\/comment.php\"},\"acf\":{\"ModuleID\":\"acf\",\"ModuleCategory\":\"parser\",\"ModuleContext\":\"on-demand\",\"ModuleLazyInit\":true,\"ModuleClassName\":\"blcACFParser\",\"ModulePriority\":0,\"ModuleCheckerUrlPattern\":\"\",\"ModuleHidden\":true,\"ModuleAlwaysActive\":true,\"ModuleRequiresPro\":false,\"Name\":\"ACF\",\"PluginURI\":\"\",\"Version\":\"1.0\",\"Description\":\"Parses acf fields (AKA custom fields)\",\"Author\":\"Janne Aalto\",\"AuthorURI\":\"\",\"TextDomain\":\"broken-link-checker\",\"DomainPath\":\"\",\"Network\":false,\"RequiresWP\":\"\",\"RequiresPHP\":\"\",\"Title\":\"ACF\",\"AuthorName\":\"Janne Aalto\",\"file\":\"parsers\\/acf_field.php\"},\"post\":{\"Name\":\"Posts\",\"ModuleCategory\":\"container\",\"ModuleContext\":\"all\",\"ModuleClassName\":\"blcAnyPostContainerManager\",\"ModuleID\":\"post\",\"file\":\"\",\"ModuleLazyInit\":false,\"ModulePriority\":0,\"ModuleHidden\":false,\"ModuleAlwaysActive\":false,\"ModuleRequiresPro\":false,\"TextDomain\":\"broken-link-checker\",\"virtual\":true},\"page\":{\"Name\":\"Pages\",\"ModuleCategory\":\"container\",\"ModuleContext\":\"all\",\"ModuleClassName\":\"blcAnyPostContainerManager\",\"ModuleID\":\"page\",\"file\":\"\",\"ModuleLazyInit\":false,\"ModulePriority\":0,\"ModuleHidden\":false,\"ModuleAlwaysActive\":false,\"ModuleRequiresPro\":false,\"TextDomain\":\"broken-link-checker\",\"virtual\":true},\"youtube-checker\":{\"ModuleID\":\"youtube-checker\",\"ModuleCategory\":\"checker\",\"ModuleContext\":\"on-demand\",\"ModuleLazyInit\":true,\"ModuleClassName\":\"blcYouTubeChecker\",\"ModulePriority\":100,\"ModuleCheckerUrlPattern\":\"@^https?:\\/\\/(?:([\\\\w\\\\d]+\\\\.)*youtube\\\\.[^\\/]+\\/watch\\\\?.*v=[^\\/#]|youtu\\\\.be\\/[^\\/#\\\\?]+|(?:[\\\\w\\\\d]+\\\\.)*?youtube\\\\.[^\\/]+\\/(playlist|view_play_list)\\\\?[^\\/#]{15,}?)@i\",\"ModuleHidden\":false,\"ModuleAlwaysActive\":false,\"ModuleRequiresPro\":false,\"Name\":\"YouTube API\",\"PluginURI\":\"\",\"Version\":\"3\",\"Description\":\"Check links to YouTube videos and playlists using the YouTube API.\",\"Author\":\"Janis Elsts\",\"AuthorURI\":\"\",\"TextDomain\":\"broken-link-checker\",\"DomainPath\":\"\",\"Network\":false,\"RequiresWP\":\"\",\"RequiresPHP\":\"\",\"Title\":\"YouTube API\",\"AuthorName\":\"Janis Elsts\",\"file\":\"extras\\/youtube.php\"},\"youtube-iframe\":{\"ModuleID\":\"youtube-iframe\",\"ModuleCategory\":\"parser\",\"ModuleContext\":\"on-demand\",\"ModuleLazyInit\":true,\"ModuleClassName\":\"blcYouTubeIframe\",\"ModulePriority\":120,\"ModuleCheckerUrlPattern\":\"\",\"ModuleHidden\":false,\"ModuleAlwaysActive\":false,\"ModuleRequiresPro\":false,\"Name\":\"Embedded YouTube videos\",\"PluginURI\":\"\",\"Version\":\"1.0\",\"Description\":\"Parse embedded videos from YouTube\",\"Author\":\"Janis Elsts\",\"AuthorURI\":\"\",\"TextDomain\":\"broken-link-checker\",\"DomainPath\":\"\",\"Network\":false,\"RequiresWP\":\"\",\"RequiresPHP\":\"\",\"Title\":\"Embedded YouTube videos\",\"AuthorName\":\"Janis Elsts\",\"file\":\"extras\\/youtube-iframe.php\"},\"dummy\":{\"ModuleID\":\"dummy\",\"ModuleCategory\":\"container\",\"ModuleContext\":\"all\",\"ModuleLazyInit\":false,\"ModuleClassName\":\"blcDummyManager\",\"ModulePriority\":0,\"ModuleCheckerUrlPattern\":\"\",\"ModuleHidden\":true,\"ModuleAlwaysActive\":true,\"ModuleRequiresPro\":false,\"Name\":\"Dummy\",\"PluginURI\":\"\",\"Version\":\"1.0\",\"Description\":\"\",\"Author\":\"Janis Elsts\",\"AuthorURI\":\"\",\"TextDomain\":\"broken-link-checker\",\"DomainPath\":\"\",\"Network\":false,\"RequiresWP\":\"\",\"RequiresPHP\":\"\",\"Title\":\"Dummy\",\"AuthorName\":\"Janis Elsts\",\"file\":\"containers\\/dummy.php\"}},\"module_deactivated_when\":{\"custom_field\":1592591824,\"acf_field\":1592591824},\"last_email\":{\"subject\":\"[SUPPORT FAZIL SAY] Broken links detected\",\"timestamp\":1661542720,\"success\":true}}','yes'),(106,'blc_installation_log','a:66:{i:0;a:3:{i:0;i:1;i:1;s:40:\"Plugin activated at 2020-06-19 18:37:04.\";i:2;N;}i:1;a:3:{i:0;i:1;i:1;s:27:\"Installation/update begins.\";i:2;N;}i:2;a:3:{i:0;i:1;i:1;s:25:\"Upgrading the database...\";i:2;N;}i:3;a:3:{i:0;i:1;i:1;s:31:\"... SHOW TABLES (0.001 seconds)\";i:2;N;}i:4;a:3:{i:0;i:1;i:1;s:258:\" [OK] \n CREATE TABLE IF NOT EXISTS `WP_blc_filters` (\n `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n `name` varchar(100) NOT NULL,\n `params` text NOT NULL,\n\n PRIMARY KEY (`id`)\n ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci (0.091 seconds)\";i:2;N;}i:5;a:3:{i:0;i:1;i:1;s:705:\" [OK] \n\n CREATE TABLE IF NOT EXISTS `WP_blc_instances` (\n `instance_id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n `link_id` int(10) unsigned NOT NULL,\n `container_id` int(10) unsigned NOT NULL,\n `container_type` varchar(40) NOT NULL DEFAULT \'post\',\n `link_text` text NOT NULL DEFAULT \'\',\n `parser_type` varchar(40) NOT NULL DEFAULT \'link\',\n `container_field` varchar(250) NOT NULL DEFAULT \'\',\n `link_context` varchar(250) NOT NULL DEFAULT \'\',\n `raw_url` text NOT NULL,\n\n PRIMARY KEY (`instance_id`),\n KEY `link_id` (`link_id`),\n KEY `source_id` (`container_type`, `container_id`),\n KEY `parser_type` (`parser_type`)\n ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci (0.047 seconds)\";i:2;N;}i:6;a:3:{i:0;i:1;i:1;s:1466:\" [OK] \n\n CREATE TABLE IF NOT EXISTS `WP_blc_links` (\n `link_id` int(20) unsigned NOT NULL AUTO_INCREMENT,\n `url` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,\n `first_failure` datetime NOT NULL DEFAULT \'0000-00-00 00:00:00\',\n `last_check` datetime NOT NULL DEFAULT \'0000-00-00 00:00:00\',\n `last_success` datetime NOT NULL DEFAULT \'0000-00-00 00:00:00\',\n `last_check_attempt` datetime NOT NULL DEFAULT \'0000-00-00 00:00:00\',\n `check_count` int(4) unsigned NOT NULL DEFAULT \'0\',\n `final_url` text CHARACTER SET latin1 COLLATE latin1_general_cs NOT NULL,\n `redirect_count` smallint(5) unsigned NOT NULL DEFAULT \'0\',\n `log` text NOT NULL,\n `http_code` smallint(6) NOT NULL DEFAULT \'0\',\n `status_code` varchar(100) DEFAULT \'\',\n `status_text` varchar(250) DEFAULT \'\',\n `request_duration` float NOT NULL DEFAULT \'0\',\n `timeout` tinyint(1) unsigned NOT NULL DEFAULT \'0\',\n `broken` tinyint(1) unsigned NOT NULL DEFAULT \'0\',\n `warning` tinyint(1) unsigned NOT NULL DEFAULT \'0\',\n `may_recheck` tinyint(1) NOT NULL DEFAULT \'1\',\n `being_checked` tinyint(1) NOT NULL DEFAULT \'0\',\n\n `result_hash` varchar(200) NOT NULL DEFAULT \'\',\n `false_positive` tinyint(1) NOT NULL DEFAULT \'0\',\n `dismissed` tinyint(1) NOT NULL DEFAULT \'0\',\n\n PRIMARY KEY (`link_id`),\n KEY `url` (`url`(150)),\n KEY `final_url` (`final_url`(150)),\n KEY `http_code` (`http_code`),\n KEY `broken` (`broken`)\n ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci (0.053 seconds)\";i:2;N;}i:7;a:3:{i:0;i:1;i:1;s:397:\" [OK] \n\n CREATE TABLE IF NOT EXISTS `WP_blc_synch` (\n `container_id` int(20) unsigned NOT NULL,\n `container_type` varchar(40) NOT NULL,\n `synched` tinyint(2) unsigned NOT NULL,\n `last_synch` datetime NOT NULL DEFAULT \'0000-00-00 00:00:00\',\n\n PRIMARY KEY (`container_type`,`container_id`),\n KEY `synched` (`synched`)\n ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci (0.032 seconds)\";i:2;N;}i:8;a:3:{i:0;i:1;i:1;s:32:\"Schema update took 0.225 seconds\";i:2;N;}i:9;a:3:{i:0;i:1;i:1;s:24:\"Database schema updated.\";i:2;N;}i:10;a:3:{i:0;i:1;i:1;s:31:\"Database successfully upgraded.\";i:2;N;}i:11;a:3:{i:0;i:1;i:1;s:24:\"--- Total: 0.231 seconds\";i:2;N;}i:12;a:3:{i:0;i:1;i:1;s:27:\"Cleaning up the database...\";i:2;N;}i:13;a:3:{i:0;i:1;i:1;s:38:\"... Deleting invalid container records\";i:2;N;}i:14;a:3:{i:0;i:0;i:1;s:44:\"... 0 synch records deleted in 0.002 seconds\";i:2;N;}i:15;a:3:{i:0;i:1;i:1;s:35:\"... Deleting invalid link instances\";i:2;N;}i:16;a:3:{i:0;i:0;i:1;s:40:\"... 0 instances deleted in 0.009 seconds\";i:2;N;}i:17;a:3:{i:0;i:0;i:1;s:45:\"... 0 more instances deleted in 0.008 seconds\";i:2;N;}i:18;a:3:{i:0;i:1;i:1;s:27:\"... Deleting orphaned links\";i:2;N;}i:19;a:3:{i:0;i:0;i:1;s:36:\"... 0 links deleted in 0.007 seconds\";i:2;N;}i:20;a:3:{i:0;i:1;i:1;s:24:\"--- Total: 0.026 seconds\";i:2;N;}i:21;a:3:{i:0;i:1;i:1;s:20:\"Notifying modules...\";i:2;N;}i:22;a:3:{i:0;i:0;i:1;s:25:\"... Updating module cache\";i:2;N;}i:23;a:3:{i:0;i:1;i:1;s:36:\"... Cache refresh took 0.022 seconds\";i:2;N;}i:24;a:3:{i:0;i:0;i:1;s:19:\"... Loading modules\";i:2;N;}i:25;a:3:{i:0;i:1;i:1;s:37:\"... 6 modules loaded in 0.001 seconds\";i:2;N;}i:26;a:3:{i:0;i:0;i:1;s:27:\"... Notifying module \"http\"\";i:2;N;}i:27;a:3:{i:0;i:0;i:1;s:27:\"... Notifying module \"link\"\";i:2;N;}i:28;a:3:{i:0;i:0;i:1;s:28:\"... Notifying module \"image\"\";i:2;N;}i:29;a:3:{i:0;i:0;i:1;s:31:\"... Notifying module \"metadata\"\";i:2;N;}i:30;a:3:{i:0;i:0;i:1;s:32:\"... Notifying module \"url_field\"\";i:2;N;}i:31;a:3:{i:0;i:0;i:1;s:30:\"... Notifying module \"comment\"\";i:2;N;}i:32;a:3:{i:0;i:0;i:1;s:51:\"...... Deleting synch. records for removed comments\";i:2;N;}i:33;a:3:{i:0;i:0;i:1;s:38:\"...... 0 rows deleted in 0.004 seconds\";i:2;N;}i:34;a:3:{i:0;i:0;i:1;s:47:\"...... Creating synch. records for new comments\";i:2;N;}i:35;a:3:{i:0;i:0;i:1;s:39:\"...... 1 rows inserted in 0.009 seconds\";i:2;N;}i:36;a:3:{i:0;i:0;i:1;s:26:\"... Notifying module \"acf\"\";i:2;N;}i:37;a:3:{i:0;i:0;i:1;s:27:\"... Notifying module \"post\"\";i:2;N;}i:38;a:3:{i:0;i:0;i:1;s:74:\"...... Deleting synch records for removed posts & post with invalid status\";i:2;N;}i:39;a:3:{i:0;i:0;i:1;s:84:\"DELETE synch.* FROM WP_blc_synch AS synch WHERE synch.container_id NOT IN (\'1\', \'2\')\";i:2;N;}i:40;a:3:{i:0;i:0;i:1;s:38:\"...... 0 rows deleted in 0.002 seconds\";i:2;N;}i:41;a:3:{i:0;i:0;i:1;s:41:\"...... Marking changed posts as unsynched\";i:2;N;}i:42;a:3:{i:0;i:0;i:1;s:220:\"UPDATE\n WP_blc_synch AS synch\n JOIN WP_posts AS posts ON (synch.container_id = posts.ID and synch.container_type=posts.post_type)\n SET\n synched = 0\n WHERE\n synch.last_synch < posts.post_modified\";i:2;N;}i:43;a:3:{i:0;i:0;i:1;s:38:\"...... 0 rows updated in 0.004 seconds\";i:2;N;}i:44;a:3:{i:0;i:0;i:1;s:43:\"...... Creating synch records for new posts\";i:2;N;}i:45;a:3:{i:0;i:0;i:1;s:389:\"INSERT INTO WP_blc_synch(container_id, container_type, synched)\n SELECT posts.id, posts.post_type, 0\n FROM\n WP_posts AS posts LEFT JOIN WP_blc_synch AS synch\n ON (synch.container_id = posts.ID and synch.container_type=posts.post_type)\n WHERE\n posts.post_status IN (\'publish\')\n AND posts.post_type IN (\'post\', \'page\')\n AND synch.container_id IS NULL\";i:2;N;}i:46;a:3:{i:0;i:0;i:1;s:39:\"...... 2 rows inserted in 0.014 seconds\";i:2;N;}i:47;a:3:{i:0;i:0;i:1;s:27:\"... Notifying module \"page\"\";i:2;N;}i:48;a:3:{i:0;i:0;i:1;s:74:\"...... Skipping \"page\" resyncyh since all post types were already synched.\";i:2;N;}i:49;a:3:{i:0;i:0;i:1;s:38:\"... Notifying module \"youtube-checker\"\";i:2;N;}i:50;a:3:{i:0;i:0;i:1;s:37:\"... Notifying module \"youtube-iframe\"\";i:2;N;}i:51;a:3:{i:0;i:0;i:1;s:28:\"... Notifying module \"dummy\"\";i:2;N;}i:52;a:3:{i:0;i:1;i:1;s:24:\"--- Total: 0.068 seconds\";i:2;N;}i:53;a:3:{i:0;i:1;i:1;s:38:\"Updating server load limit settings...\";i:2;N;}i:54;a:3:{i:0;i:1;i:1;s:59:\"Set server load limit to 4.00. Current load average is 0.79\";i:2;N;}i:55;a:3:{i:0;i:1;i:1;s:26:\"Optimizing the database...\";i:2;N;}i:56;a:3:{i:0;i:1;i:1;s:24:\"--- Total: 0.247 seconds\";i:2;N;}i:57;a:3:{i:0;i:1;i:1;s:26:\"Completing installation...\";i:2;N;}i:58;a:3:{i:0;i:1;i:1;s:20:\"Configuration saved.\";i:2;N;}i:59;a:3:{i:0;i:1;i:1;s:78:\"Installation/update completed at 2020-06-19 18:37:04 with 50 queries executed.\";i:2;N;}i:60;a:3:{i:0;i:1;i:1;s:25:\"Total time: 0.683 seconds\";i:2;N;}i:61;a:3:{i:0;i:0;i:1;s:36:\"... 0 links deleted in 0.002 seconds\";i:2;N;}i:62;a:3:{i:0;i:0;i:1;s:36:\"... 0 links deleted in 0.000 seconds\";i:2;N;}i:63;a:3:{i:0;i:0;i:1;s:36:\"... 0 links deleted in 0.000 seconds\";i:2;N;}i:64;a:3:{i:0;i:0;i:1;s:36:\"... 0 links deleted in 0.000 seconds\";i:2;N;}i:65;a:3:{i:0;i:0;i:1;s:36:\"... 0 links deleted in 0.000 seconds\";i:2;N;}}','yes'),(107,'blc_activation_enabled','1','yes'),(108,'wpseo','a:57:{s:8:\"tracking\";b:0;s:22:\"license_server_version\";i:2;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:23:\"home_url_option_changed\";s:29:\"indexables_indexing_completed\";b:1;s:7:\"version\";s:4:\"18.9\";s:16:\"previous_version\";s:4:\"18.8\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1592591825;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:27:\"https://supportfazilsay.com\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:0:{}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:0;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:0:\"\";s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:0:{}s:36:\"dismiss_configuration_workout_notice\";b:0;s:19:\"importing_completed\";a:0:{}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:18:\"first_time_install\";b:0;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";i:1652258756;}','yes'),(109,'wpseo_titles','a:107:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:23:\"is-media-purge-relevant\";b:0;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:0;s:17:\"company_logo_meta\";b:0;s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;}','yes'),(110,'wpseo_social','a:18:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";}','yes'),(111,'wpseo_flush_rewrite','1','yes'),(112,'cron','a:15:{i:1678812931;a:1:{s:27:\"wpil_broken_link_check_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"10min\";s:4:\"args\";a:0:{}s:8:\"interval\";i:600;}}}i:1678813031;a:1:{s:20:\"blc_cron_check_links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"10min\";s:4:\"args\";a:0:{}s:8:\"interval\";i:600;}}}i:1678815430;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:1678819026;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:1678819027;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1678819030;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:1678819031;a:5:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:28:\"blc_cron_email_notifications\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:29:\"blc_cron_database_maintenance\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1678847116;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:1678847746;a:2:{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;}}s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1678854847;a:1:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1678876815;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:1678890260;a:1:{s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1679078225;a:1:{s:16:\"wpseo_ryte_fetch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1679164630;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(113,'tagline','','yes'),(115,'auth_key','e26 n5v4`J@W9-ylnDW*u9Su+gu%-oX|9urW8dlr(*=08oCar-m#cg.X][#~$5}q','no'),(116,'auth_salt','cF`?c2x97I+5j]:Iposs8>g*|3CTUR#qf(5-9VbYEp3xHGExQRK6ok6*Td:PhOB@','no'),(117,'logged_in_key','IJEovv#9R^&-f4$/<9_aG^;;Ev,xD;@Vv,k7*>Xs_X:VTMplVNl4%OeRV{}5Bhll','no'),(118,'logged_in_salt','JgSDx5Oj-#UJ I.]3w^9ENmiR:4`!`)7cZJh-_8eC4H)[.Knq2r((NB-oZK5]2e3','no'),(119,'update_day','6','yes'),(120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(122,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(123,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(124,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(125,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(126,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(127,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(129,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"18.9\";}','yes'),(130,'nonce_key',';@/E`VGx`uU^t!Mu[2i:Rmj-,6KvG0,wD-VNE`kb)8ymTld:ej6).CTAB0N!<b&d','no'),(131,'nonce_salt','Ufo>Cz9=M<Le!{h]5Wkm|<oz}pN_Yg.?h-U`M,[AE$7<%kE`WP`OG^nVZu+KmjHy','no'),(132,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(145,'current_theme','GloriaFood Restaurant','yes'),(148,'esteem_customizer_transfer','1','yes'),(149,'widget_esteem_service_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(150,'widget_esteem_recent_work_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(151,'widget_esteem_call_to_action_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(152,'widget_esteem_testimonial_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(154,'theme_mods_esteem_child','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1598247396;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'),(155,'crawl-delay-value','6','yes'),(181,'recently_activated','a:0:{}','yes'),(203,'cb_admin_notice','a:1:{s:15:\"two_week_review\";a:3:{s:5:\"start\";s:10:\"08/29/2020\";s:3:\"int\";i:7;s:9:\"dismissed\";i:0;}}','yes'),(204,'contact-bank-version-number','3.0.1','yes'),(206,'wp_insert_legalpages','a:4:{s:14:\"privacy_policy\";a:2:{s:7:\"content\";s:2668:\"<p>At [sitename], the privacy of our visitors is of extreme importance to us. This privacy policy document outlines the types of personal information is received and collected by [sitename] and how it is used.</p><p><b>Log Files</b></p><p>Like many other Web sites, [sitename] makes use of log files. The information inside the log files includes internet protocol (IP) addresses, type of browser, Internet Service Provider (ISP), date/time stamp, referring/exit pages, and number of clicks to analyze trends, administer the site, track user\\\'s movement around the site, and gather demographic information. IP addresses, and other such information are not linked to any information that is personally identifiable.</p><p><b>Cookies and Web Beacons</b></p><p>[sitename] does use cookies to store information about visitors preferences, record user-specific information on which pages the user access or visit, customize Web page content based on visitors browser type or other information that the visitor sends via their browser.</p><p><b>DoubleClick DART Cookie</b></p><ul><li>Google, as a third party vendor, uses cookies to serve ads on [sitename].</li><li>Google\\\'s use of the DART cookie enables it to serve ads to users based on their visit to [sitename] and other sites on the Internet.</li><li>Users may opt out of the use of the DART cookie by visiting the Google ad and content network privacy policy at the following URL - <a href=\\\"https://www.google.com/policies/privacy/\\\" rel=\\\"nofollow\\\">https://www.google.com/policies/privacy/</a>.</li></ul><p>These third-party ad servers or ad networks use technology to the advertisements and links that appear on [sitename] send directly to your browsers. They automatically receive your IP address when this occurs. Other technologies ( such as cookies, JavaScript, or Web Beacons ) may also be used by the third-party ad networks to measure the effectiveness of their advertisements and / or to personalize the advertising content that you see.</p><p>[sitename] has no access to or control over these cookies that are used by third-party advertisers.</p><p>You should consult the respective privacy policies of these third-party ad servers for more detailed information on their practices as well as for instructions about how to opt-out of certain practices. [sitename]\\\'s privacy policy does not apply to, and we cannot control the activities of, such other advertisers or web sites.</p><p>If you wish to disable cookies, you may do so through your individual browser options. More detailed information about cookie management with specific web browsers can be found at the browser\\\'s respective websites.</p>\";s:13:\"assigned_page\";s:2:\"17\";}s:16:\"terms_conditions\";a:2:{s:7:\"content\";s:2315:\"<p>Welcome to [sitename]. If you continue to browse and use this website you are agreeing to comply with and be bound by the following terms and conditions of use, which together with our privacy policy govern [sitename]\\\'s relationship with you in relation to this website.</p><p>The term [sitename] or \\\'us\\\' or \\\'we\\\' refers to the owner of the website. The term \\\'you\\\' refers to the user or viewer of our website. The use of this website is subject to the following terms of use:</p><ul><li>The content of the pages of this website is for your general information and use only. It is subject to change without notice.</li><li>Neither we nor any third parties provide any warranty or guarantee as to the accuracy, timeliness, performance, completeness or suitability of the information and materials found or offered on this website for any particular purpose. You acknowledge that such information and materials may contain inaccuracies or errors and we expressly exclude liability for any such inaccuracies or errors to the fullest extent permitted by law.</li><li>Your use of any information or materials on this website is entirely at your own risk, for which we shall not be liable. It shall be your own responsibility to ensure that any products, services or information available through this website meet your specific requirements.</li><li>This website contains material which is owned by or licensed to us. This material includes, but is not limited to, the design, layout, look, appearance and graphics. Reproduction is prohibited other than in accordance with the copyright notice, which forms part of these terms and conditions.</li><li>All trademarks reproduced in this website, which are not the property of, or licensed to the operator, are acknowledged on the website.</li><li>Unauthorized use of this website may give rise to a claim for damages and/or be a criminal offense.</li><li>From time to time this website may also include links to other websites. These links are provided for your convenience to provide further information. They do not signify that we endorse the website(s). We have no responsibility for the content of the linked website(s).</li><li>You may not create a link to this website from another website or document without [sitename]\\\'s prior written consent.</li></ul>\";s:13:\"assigned_page\";s:2:\"18\";}s:10:\"disclaimer\";a:2:{s:7:\"content\";s:0:\"\";s:13:\"assigned_page\";s:0:\"\";}s:9:\"copyright\";a:2:{s:7:\"content\";s:0:\"\";s:13:\"assigned_page\";s:0:\"\";}}','yes'),(207,'wp_insert_version','2.5','yes'),(208,'widget_contact_bank_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(209,'widget_wp_insert_ad_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(217,'disallowed_keys','','no'),(218,'comment_previously_approved','','yes'),(219,'auto_plugin_theme_update_emails','a:0:{}','no'),(220,'finished_updating_comment_type','1','yes'),(221,'db_upgraded','','yes'),(224,'contact-bank-wizard-set-up','skip','yes'),(225,'contact-bank-admin-email','[email protected]','yes'),(251,'sfmsb_version','3.3.3','yes'),(252,'widget_sfmsb_settings','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(262,'theme_mods_esteem','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(266,'theme_mods_gloriafood-restaurant','a:12:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";i:4;}s:18:\"custom_css_post_id\";i:38;s:30:\"glf_order_buttons_show_buttons\";i:0;s:28:\"glf_order_buttons_order_text\";s:0:\"\";s:28:\"glf_order_buttons_order_link\";s:0:\"\";s:34:\"glf_order_buttons_reservation_text\";s:0:\"\";s:34:\"glf_order_buttons_reservation_link\";s:0:\"\";s:12:\"header_image\";s:106:\"http://supportfazilsay.com/wp-content/uploads/2020/08/healthy-snacks-for-weight-loss-1200x628-facebook.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:24;s:3:\"url\";s:106:\"http://supportfazilsay.com/wp-content/uploads/2020/08/healthy-snacks-for-weight-loss-1200x628-facebook.jpg\";s:13:\"thumbnail_url\";s:106:\"http://supportfazilsay.com/wp-content/uploads/2020/08/healthy-snacks-for-weight-loss-1200x628-facebook.jpg\";s:6:\"height\";i:628;s:5:\"width\";i:1200;}s:11:\"custom_logo\";i:58;s:16:\"header_textcolor\";s:0:\"\";}','yes'),(267,'theme_switched','','yes'),(268,'widget_glf-about-us','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(269,'widget_glf-promo-cards','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(270,'widget_glf-gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(273,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(332,'secure_auth_key','2a;|Wr,O! $b](tY`X82fh-*qQ#6(p/M{?=dB=sC]-3L$&g`}P*tYPy8={wjNH$^','no'),(333,'secure_auth_salt','?|*I/M5U6(bqmgN S*O9x9ZDmD](Q9U[YV8gnsO+[mY06)BUqc~EkA:x[?dR2jT(','no'),(369,'mainwp_child_update_version','1.5','yes'),(370,'mainwp_child_plugin_version','4.2.3','yes'),(371,'mainwp_child_auth','a:7:{i:5;s:32:\"2bf3aa85f97b15cb276cdfe6519b5f0e\";s:4:\"last\";i:1678932889;i:4;s:32:\"d2dfa71d94366121448c6186c0dcd996\";i:3;s:32:\"2cbd62fe1fceca7aaf5f6d9a527ca164\";i:2;s:32:\"aa6e273b2623ff5a9827b285d4adb6d7\";i:1;s:32:\"6b0a266401a2cdd5977880e7a54a4065\";i:0;s:32:\"6be201c37230bfacd5cef7a59912d700\";}','yes'),(372,'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'),(373,'mainwp_child_activated_once','1','no'),(374,'mainwp_child_pubkey','LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUF4VksvUlJFVjR1cXhoMm01NzRXbQpQZXlRbXkvN1p3ZDdMN1JpNFhHQXFyN0tqbUNvTWZQYm5ha1djaE5tQUZDdlZSUUFUVzdRT1VJNEpTNlVaUVdCCkFNRFMvdEh4eFBWMnAxVjdhbmFtUE9MRy9NWGloaU4zOVc2YTJCZXcwTHFpWFpmQ09jKzdSMG9kUnYrOUY4cXkKeTZOb3JHa09lL2NPR3pLcGFPVFFuM1dSWmpNR2l3RWd0VzVpdFpNcTJEcXZLd2JySjNUVmx4eXhkbm1Pa0RCaQo4ckZSWjlYTDl0N3lGc01EaGFSWnFsNE1lS0hiQk16ZmZIM1A0bXc5UXNKMVpsRjQyVEJxeXpsRlZtdkxNWVZCCmpjRHh6SndqMkxlZGZMaGNLSW04ak5DNitZcFFQaFJHc3JWd0lnYjgvUHFiKzRKSDV5TG1idE9DeXNjUmZmOHgKcXdJREFRQUIKLS0tLS1FTkQgUFVCTElDIEtFWS0tLS0tCg==','yes'),(375,'mainwp_child_server','https://dashboard.comparrot.nl/wp-admin/','no'),(376,'mainwp_child_nonce','0','no'),(377,'mainwp_child_nossl','0','yes'),(378,'mainwp_child_nossl_key','1e978008a6e77dc67dfb4aa4e5bf914e46147a1a7b9828cedb617182990f4585','yes'),(379,'mainwp_premium_updates','a:0:{}','no'),(382,'mainwp_child_clone_sites','0','no'),(383,'mainwp_child_siteid','396','no'),(384,'wpseo_ryte','a:2:{s:6:\"status\";i:-1;s:10:\"last_fetch\";i:1649444311;}','yes'),(390,'recovery_keys','a:0:{}','yes'),(401,'auto_core_update_notified','a:4:{s:4:\"type\";s:4:\"fail\";s:5:\"email\";s:24:\"[email protected]\";s:7:\"version\";s:5:\"6.0.3\";s:9:\"timestamp\";i:1666081422;}','no'),(412,'https_detection_errors','a:0:{}','yes'),(597,'auto_update_core_dev','enabled','yes'),(598,'auto_update_core_minor','enabled','yes'),(599,'auto_update_core_major','unset','yes'),(820,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1012,'wp_force_deactivated_plugins','a:0:{}','yes'),(1070,'category_children','a:0:{}','yes'),(15673,'mainwp_cache_control_cache_solution','Cache Enabler','yes'),(21725,'rewrite_rules','a:96:{s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:39:\"index.php?yoast-sitemap-xsl=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s: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'),(26602,'mainwp_child_auto_purge_cache','0','yes'),(26603,'mainwp_child_cloud_flair_enabled','0','yes'),(26604,'mainwp_cloudflair_email','','yes'),(26605,'mainwp_cloudflair_key','','yes'),(26683,'ai1wm_secret_key','ENXN6GhR8puB','yes'),(26684,'ai1wm_backups_labels','a:0:{}','yes'),(26685,'ai1wm_sites_links','a:0:{}','yes'),(26686,'swift_performance_plugin_organizer','a:0:{}','yes'),(26687,'jetpack_active_modules','a:0:{}','yes'),(26709,'_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:1678812639;s:15:\"version_checked\";s:3:\"6.0\";s:12:\"translations\";a:0:{}}','no'),(26716,'ai1wm_updater','a:1:{s:43:\"all-in-one-wp-migration-multisite-extension\";a:13:{s:4:\"name\";s:19:\"Multisite Extension\";s:4:\"slug\";s:19:\"multisite-extension\";s:8:\"homepage\";s:51:\"https://servmask.com/extensions/multisite-extension\";s:13:\"download_link\";s:29:\"https://servmask.com/purchase\";s:7:\"version\";s:4:\"4.27\";s:6:\"author\";s:8:\"ServMask\";s:15:\"author_homepage\";s:20:\"https://servmask.com\";s:8:\"sections\";a:1:{s:11:\"description\";s:595:\"<ul class=\"description\"><li>Export single site from the network</li><li>Export multiple sites from the network</li><li>Export the whole network</li><li>Import single site into the network</li><li>Import multiple sites into the network</li><li>Import a network</li><li>Clone single site within a network</li><li>Multi-network support</li><li>Lifetime license with lifetime updates</li><li>Use on any number of websites that you own</li><li>Backup scheduler with hourly, daily, and weekly options</li><li>Unlimited Extension included</li><li>WP CLI commands</li><li>Premium support</li></ul><br />\";}s:7:\"banners\";a:2:{s:3:\"low\";s:65:\"https://servmask.com/img/products/multisite-extension-772x250.png\";s:4:\"high\";s:66:\"https://servmask.com/img/products/multisite-extension-1544x500.png\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:65:\"https://servmask.com/img/products/multisite-extension-128x128.png\";s:2:\"2x\";s:65:\"https://servmask.com/img/products/multisite-extension-256x256.png\";s:7:\"default\";s:65:\"https://servmask.com/img/products/multisite-extension-256x256.png\";}s:6:\"rating\";i:99;s:11:\"num_ratings\";i:309;s:10:\"downloaded\";i:40189;}}','yes'),(26717,'_site_transient_ai1wm_last_check_for_updates','1678812639','no'),(26720,'_transient_health-check-site-status-result','{\"good\":12,\"recommended\":6,\"critical\":1}','yes'),(31820,'auto_core_update_failed','a:6:{s:9:\"attempted\";s:5:\"6.0.3\";s:7:\"current\";s:3:\"6.0\";s:10:\"error_code\";s:32:\"copy_failed_for_update_core_file\";s:10:\"error_data\";s:33:\"wp-admin/includes/update-core.php\";s:9:\"timestamp\";i:1666081422;s:5:\"retry\";b:0;}','no'),(32306,'ai1wmme_plugin_key','72821048-196b-4fc6-a1e9-59bd100238e8','yes'),(32307,'Niteoweb.SpiderBlocker.Bots','a:40:{i:0;a:4:{s:4:\"name\";s:10:\"Ahrefs Bot\";s:2:\"re\";s:9:\"AhrefsBot\";s:4:\"desc\";s:25:\"https://ahrefs.com/robot/\";s:5:\"state\";b:1;}i:1;a:4:{s:4:\"name\";s:8:\"MJ12 bot\";s:2:\"re\";s:7:\"MJ12bot\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:2;a:4:{s:4:\"name\";s:9:\"Roger Bot\";s:2:\"re\";s:8:\"Rogerbot\";s:4:\"desc\";s:40:\"http://moz.com/help/pro/rogerbot-crawler\";s:5:\"state\";b:1;}i:3;a:4:{s:4:\"name\";s:11:\"Semrush Bot\";s:2:\"re\";s:10:\"SemrushBot\";s:4:\"desc\";s:31:\"http://www.semrush.com/bot.html\";s:5:\"state\";b:1;}i:4;a:4:{s:4:\"name\";s:11:\"ia_archiver\";s:2:\"re\";s:11:\"ia_archiver\";s:4:\"desc\";s:36:\"http://archive.org/about/exclude.php\";s:5:\"state\";b:1;}i:5;a:4:{s:4:\"name\";s:8:\"ScoutJet\";s:2:\"re\";s:8:\"ScoutJet\";s:4:\"desc\";s:19:\"http://scoutjet.com\";s:5:\"state\";b:1;}i:6;a:4:{s:4:\"name\";s:7:\"sistrix\";s:2:\"re\";s:7:\"sistrix\";s:4:\"desc\";s:26:\"http://crawler.sistrix.net\";s:5:\"state\";b:1;}i:7;a:4:{s:4:\"name\";s:16:\"SearchmetricsBot\";s:2:\"re\";s:16:\"SearchmetricsBot\";s:4:\"desc\";s:50:\"http://www.searchmetrics.com/en/searchmetrics-bot/\";s:5:\"state\";b:1;}i:8;a:4:{s:4:\"name\";s:14:\"SEOkicks-Robot\";s:2:\"re\";s:14:\"SEOkicks-Robot\";s:4:\"desc\";s:33:\"http://www.seokicks.de/robot.html\";s:5:\"state\";b:1;}i:9;a:4:{s:4:\"name\";s:16:\"Lipperhey Spider\";s:2:\"re\";s:16:\"Lipperhey Spider\";s:4:\"desc\";s:43:\"http://www.lipperhey.com/en/website-spider/\";s:5:\"state\";b:1;}i:10;a:4:{s:4:\"name\";s:6:\"Exabot\";s:2:\"re\";s:6:\"Exabot\";s:4:\"desc\";s:44:\"http://www.exalead.com/search/webmasterguide\";s:5:\"state\";b:1;}i:11;a:4:{s:4:\"name\";s:6:\"NC Bot\";s:2:\"re\";s:5:\"NCBot\";s:4:\"desc\";s:55:\"https://twitter.com/NetComber/status/334476871691550721\";s:5:\"state\";b:1;}i:12;a:4:{s:4:\"name\";s:15:\"BacklinkCrawler\";s:2:\"re\";s:15:\"BacklinkCrawler\";s:4:\"desc\";s:40:\"http://www.backlinktest.com/crawler.html\";s:5:\"state\";b:1;}i:13;a:4:{s:4:\"name\";s:15:\"archive.org Bot\";s:2:\"re\";s:15:\"archive.org_bot\";s:4:\"desc\";s:42:\"http://archive.org/details/archive.org_bot\";s:5:\"state\";b:1;}i:14;a:4:{s:4:\"name\";s:12:\"MeanPath Bot\";s:2:\"re\";s:11:\"meanpathbot\";s:4:\"desc\";s:37:\"https://meanpath.com/meanpathbot.html\";s:5:\"state\";b:1;}i:15;a:4:{s:4:\"name\";s:18:\"PagesInventory Bot\";s:2:\"re\";s:14:\"PagesInventory\";s:4:\"desc\";s:56:\"http://www.botsvsbrowsers.com/details/1002332/index.html\";s:5:\"state\";b:1;}i:16;a:4:{s:4:\"name\";s:12:\"Aboundex Bot\";s:2:\"re\";s:11:\"Aboundexbot\";s:4:\"desc\";s:32:\"http://www.aboundex.com/crawler/\";s:5:\"state\";b:1;}i:17;a:4:{s:4:\"name\";s:15:\"SeoProfiler Bot\";s:2:\"re\";s:5:\"spbot\";s:4:\"desc\";s:31:\"http://www.seoprofiler.com/bot/\";s:5:\"state\";b:1;}i:18;a:4:{s:4:\"name\";s:11:\"Linkdex Bot\";s:2:\"re\";s:10:\"linkdexbot\";s:4:\"desc\";s:34:\"http://www.linkdex.com/about/bots/\";s:5:\"state\";b:1;}i:19;a:4:{s:4:\"name\";s:7:\"Gigabot\";s:2:\"re\";s:7:\"Gigabot\";s:4:\"desc\";s:45:\"http://www.useragentstring.com/pages/Gigabot/\";s:5:\"state\";b:1;}i:20;a:4:{s:4:\"name\";s:6:\"DotBot\";s:2:\"re\";s:6:\"dotbot\";s:4:\"desc\";s:35:\"http://en.wikipedia.org/wiki/DotBot\";s:5:\"state\";b:1;}i:21;a:4:{s:4:\"name\";s:5:\"Nutch\";s:2:\"re\";s:5:\"Nutch\";s:4:\"desc\";s:32:\"http://nutch.apache.org/bot.html\";s:5:\"state\";b:1;}i:22;a:4:{s:4:\"name\";s:8:\"BLEX Bot\";s:2:\"re\";s:7:\"BLEXBot\";s:4:\"desc\";s:27:\"http://webmeup-crawler.com/\";s:5:\"state\";b:1;}i:23;a:4:{s:4:\"name\";s:6:\"Ezooms\";s:2:\"re\";s:6:\"Ezooms\";s:4:\"desc\";s:49:\"http://graphicline.co.za/blogs/what-is-ezooms-bot\";s:5:\"state\";b:1;}i:24;a:4:{s:4:\"name\";s:11:\"Majestic 12\";s:2:\"re\";s:11:\"Majestic-12\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:25;a:4:{s:4:\"name\";s:12:\"Majestic SEO\";s:2:\"re\";s:12:\"Majestic-SEO\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:26;a:4:{s:4:\"name\";s:7:\"DSearch\";s:2:\"re\";s:7:\"DSearch\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:27;a:4:{s:4:\"name\";s:4:\"MJ12\";s:2:\"re\";s:4:\"MJ12\";s:4:\"desc\";s:56:\"http://www.majestic12.co.uk/projects/dsearch/mj12bot.php\";s:5:\"state\";b:1;}i:28;a:4:{s:4:\"name\";s:10:\"Blekko Bot\";s:2:\"re\";s:9:\"BlekkoBot\";s:4:\"desc\";s:33:\"http://blekko.com/about/blekkobot\";s:5:\"state\";b:1;}i:29;a:4:{s:4:\"name\";s:6:\"Yandex\";s:2:\"re\";s:6:\"Yandex\";s:4:\"desc\";s:41:\"http://help.yandex.com/search/?id=1112030\";s:5:\"state\";b:0;}i:30;a:4:{s:4:\"name\";s:10:\"Google Bot\";s:2:\"re\";s:9:\"googlebot\";s:4:\"desc\";s:57:\"https://support.google.com/webmasters/answer/182072?hl=en\";s:5:\"state\";b:0;}i:31;a:4:{s:4:\"name\";s:18:\"Feedfetcher Google\";s:2:\"re\";s:18:\"Feedfetcher-Google\";s:4:\"desc\";s:51:\"https://support.google.com/webmasters/answer/178852\";s:5:\"state\";b:0;}i:32;a:4:{s:4:\"name\";s:8:\"Bing Bot\";s:2:\"re\";s:7:\"BingBot\";s:4:\"desc\";s:36:\"http://en.wikipedia.org/wiki/Bingbot\";s:5:\"state\";b:0;}i:33;a:4:{s:4:\"name\";s:9:\"Nerdy Bot\";s:2:\"re\";s:8:\"NerdyBot\";s:4:\"desc\";s:20:\"http://nerdybot.com/\";s:5:\"state\";b:1;}i:34;a:4:{s:4:\"name\";s:9:\"James BOT\";s:2:\"re\";s:8:\"JamesBOT\";s:4:\"desc\";s:32:\"http://cognitiveseo.com/bot.html\";s:5:\"state\";b:1;}i:35;a:4:{s:4:\"name\";s:7:\"Tin Eye\";s:2:\"re\";s:6:\"TinEye\";s:4:\"desc\";s:34:\"http://www.tineye.com/crawler.html\";s:5:\"state\";b:1;}i:36;a:4:{s:4:\"name\";s:5:\"Baidu\";s:2:\"re\";s:11:\"Baiduspider\";s:4:\"desc\";s:47:\"http://www.baidu.com/search/robots_english.html\";s:5:\"state\";b:1;}i:37;a:4:{s:4:\"name\";s:8:\"Serpstat\";s:2:\"re\";s:8:\"serpstat\";s:4:\"desc\";s:21:\"https://serpstat.com/\";s:5:\"state\";b:1;}i:38;a:4:{s:4:\"name\";s:5:\"SpyFu\";s:2:\"re\";s:5:\"spyfu\";s:4:\"desc\";s:22:\"https://www.spyfu.com/\";s:5:\"state\";b:1;}i:39;a:4:{s:4:\"name\";s:5:\"Prlog\";s:2:\"re\";s:5:\"Prlog\";s:4:\"desc\";s:17:\"https://prlog.ru/\";s:5:\"state\";b:1;}}','yes'),(43346,'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'),(57130,'wpil_2_license_status','','yes'),(57131,'wpil_2_license_key','','yes'),(57132,'wpil_2_license_data','','yes'),(57133,'wpil_2_ignore_numbers','1','yes'),(57134,'wpil_2_post_types','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(57135,'wpil_2_links_open_new_tab','0','yes'),(57136,'wpil_2_debug_mode','0','yes'),(57137,'wpil_option_update_reporting_data_on_save','0','yes'),(57138,'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'),(57139,'wpil_has_run_initial_scan','1','yes'),(57140,'wpil_site_db_version','1.22','yes'),(57141,'wpil_link_table_is_created','1','yes'),(57142,'wpil_fresh_install','','yes'),(57143,'wpil_install_date','2023-02-16 20:35:11','yes'),(57146,'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:1676579713;s:11:\"plugin_path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}}s:7:\"abspath\";s:37:\"/opt/aphex/sites/supportfazilsay.com/\";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:1676579713;}}','yes'),(57147,'fs_debug_mode','','yes'),(57148,'fs_accounts','a:7:{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:16:{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:1676579713;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.5.3\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:13:\"2.25.2-beta.1\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:19:\"supportfazilsay.com\";s:9:\"server_ip\";s:9:\"127.0.0.1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1676987728;s:7:\"version\";s:13:\"2.25.2-beta.1\";}s:15:\"prev_is_premium\";b:1;s:18:\"sticky_optin_added\";b:1;}}s:13:\"file_slug_map\";a:1:{s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";}s:7:\"plugins\";a:1:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:28:\"WP Sheet Editor - Post Types\";s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:12:\"premium_slug\";s:23:\"wp-sheet-editor-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:7:\"version\";s:13:\"2.25.2-beta.1\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:1;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_ec1c7da603c0772f1bfe276efb715\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"1010\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"f9f5bd83850c8f9580f9e4b39cce4a9c\";s:13:\"admin_notices\";a:1:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";a:1:{s:15:\"connect_account\";a:10:{s:7:\"message\";s:184:\"We made a few tweaks to the plugin, <b><a href=\"https://supportfazilsay.com/wp-admin/admin.php?page=vg_sheet_editor_setup\">Opt in to make \"WP Sheet Editor - Post Types\" better!</a></b>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:10:\"update-nag\";s:6:\"sticky\";b:1;s:2:\"id\";s:15:\"connect_account\";s:10:\"manager_id\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:6:\"plugin\";s:28:\"WP Sheet Editor - Post Types\";s:10:\"wp_user_id\";N;s:11:\"dismissible\";b:1;s:4:\"data\";a:0:{}}}}s:7:\"updates\";a:1:{i:1010;N;}}','yes'),(57185,'vg_sheet_editor','a:8:{s:8:\"last_tab\";N;s:13:\"be_post_types\";a:1:{i:0;s:4:\"post\";}s:17:\"be_posts_per_page\";i:20;s:23:\"be_load_items_on_scroll\";i:1;s:19:\"be_fix_columns_left\";i:2;s:22:\"be_posts_per_page_save\";i:4;s:26:\"be_timeout_between_batches\";i:6;s:23:\"be_disable_post_actions\";i:0;}','yes'),(57351,'fs_gdpr','a:1:{s:2:\"u1\";a:1:{s:8:\"required\";b:0;}}','yes'),(57370,'vgse_columns_visibility','a:0:{}','yes'),(57371,'vgse_columns_visibility_migrated','1','yes'),(57372,'vgse_welcome_redirect','no','yes'),(57373,'vgse_hide_whats_new_2.25.2-beta.1','yes','yes'),(57378,'can_compress_scripts','1','no'),(57939,'_site_transient_timeout_theme_roots','1678814435','no'),(57940,'_site_transient_theme_roots','a:5:{s:12:\"esteem_child\";s:7:\"/themes\";s:21:\"gloriafood-restaurant\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(57941,'_site_transient_timeout_php_check_0bf95b5f09d09e56bf994b7894d9087c','1679417435','no'),(57942,'_site_transient_php_check_0bf95b5f09d09e56bf994b7894d9087c','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(57944,'_transient_timeout_849464c559e021b02236c1d0126fa397','1678899039','no'),(57945,'_transient_849464c559e021b02236c1d0126fa397','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:7:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 14 Mar 2023 16:50:39 GMT\";s:12:\"content-type\";s:25:\"text/plain; charset=utf-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:5:\"ord 4\";}}s:4:\"body\";s:1159:\"{\"plugins\":{\"wp-sheet-editor-premium\\/wp-sheet-editor.php\":{\"id\":\"w.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"slug\":\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"plugin\":\"wp-sheet-editor-premium\\/wp-sheet-editor.php\",\"new_version\":\"2.25.1\",\"url\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/\",\"package\":\"https:\\/\\/downloads.wordpress.org\\/plugin\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages.2.25.1.zip\",\"icons\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-256x256.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-128x128.png?rev=1543619\"},\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-1544x500.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-772x250.png?rev=1543627\"},\"banners_rtl\":[],\"requires\":\"3.6\",\"tested\":\"6.1.1\",\"requires_php\":false,\"compatibility\":[]}},\"translations\":[]}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:1159:\"{\"plugins\":{\"wp-sheet-editor-premium\\/wp-sheet-editor.php\":{\"id\":\"w.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"slug\":\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"plugin\":\"wp-sheet-editor-premium\\/wp-sheet-editor.php\",\"new_version\":\"2.25.1\",\"url\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/\",\"package\":\"https:\\/\\/downloads.wordpress.org\\/plugin\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages.2.25.1.zip\",\"icons\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-256x256.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-128x128.png?rev=1543619\"},\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-1544x500.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-772x250.png?rev=1543627\"},\"banners_rtl\":[],\"requires\":\"3.6\",\"tested\":\"6.1.1\",\"requires_php\":false,\"compatibility\":[]}},\"translations\":[]}\";s:3:\"raw\";s:1406:\"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Tue, 14 Mar 2023 16:50:39 GMT\r\nContent-Type: text/plain; charset=utf-8\r\nTransfer-Encoding: chunked\r\nConnection: close\r\nVary: Accept-Encoding\r\nX-Frame-Options: SAMEORIGIN\r\nContent-Encoding: br\r\nX-nc: ord 4\r\n\r\n{\"plugins\":{\"wp-sheet-editor-premium\\/wp-sheet-editor.php\":{\"id\":\"w.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"slug\":\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"plugin\":\"wp-sheet-editor-premium\\/wp-sheet-editor.php\",\"new_version\":\"2.25.1\",\"url\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/\",\"package\":\"https:\\/\\/downloads.wordpress.org\\/plugin\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages.2.25.1.zip\",\"icons\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-256x256.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-128x128.png?rev=1543619\"},\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-1544x500.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-772x250.png?rev=1543627\"},\"banners_rtl\":[],\"requires\":\"3.6\",\"tested\":\"6.1.1\",\"requires_php\":false,\"compatibility\":[]}},\"translations\":[]}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:7:{s:6:\"server\";a:1:{i:0;s:5:\"nginx\";}s:4:\"date\";a:1:{i:0;s:29:\"Tue, 14 Mar 2023 16:50:39 GMT\";}s:12:\"content-type\";a:1:{i:0;s:25:\"text/plain; charset=utf-8\";}s:4:\"vary\";a:1:{i:0;s:15:\"Accept-Encoding\";}s:15:\"x-frame-options\";a:1:{i:0;s:10:\"SAMEORIGIN\";}s:16:\"content-encoding\";a:1:{i:0;s:2:\"br\";}s:4:\"x-nc\";a:1:{i:0;s:5:\"ord 4\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.1000000000000001;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:51:\"https://api.wordpress.org/plugins/update-check/1.1/\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no'),(57946,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1678812640;s:7:\"checked\";a:4:{s:21:\"gloriafood-restaurant\";s:5:\"1.0.5\";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:4:{s:21:\"gloriafood-restaurant\";a:6:{s:5:\"theme\";s:21:\"gloriafood-restaurant\";s:11:\"new_version\";s:5:\"1.0.7\";s:3:\"url\";s:51:\"https://wordpress.org/themes/gloriafood-restaurant/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/theme/gloriafood-restaurant.1.0.7.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.1.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.7.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.3.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(57947,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1678812641;s:8:\"response\";a:7:{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.72\";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.72.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=2837281\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=2837281\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";s:6:\"tested\";s:3:\"6.2\";s:12:\"requires_php\";s:3:\"5.3\";}s:43:\"broken-link-checker/broken-link-checker.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:33:\"w.org/plugins/broken-link-checker\";s:4:\"slug\";s:19:\"broken-link-checker\";s:6:\"plugin\";s:43:\"broken-link-checker/broken-link-checker.php\";s:11:\"new_version\";s:5:\"2.0.0\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/broken-link-checker/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/broken-link-checker.2.0.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/broken-link-checker/assets/icon-256x256.png?rev=2205502\";s:2:\"1x\";s:72:\"https://ps.w.org/broken-link-checker/assets/icon-128x128.png?rev=2205502\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/broken-link-checker/assets/banner-1544x500.png?rev=2205502\";s:2:\"1x\";s:74:\"https://ps.w.org/broken-link-checker/assets/banner-772x250.png?rev=2205502\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"7.2\";}s:29:\"mainwp-child/mainwp-child.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/mainwp-child\";s:4:\"slug\";s:12:\"mainwp-child\";s:6:\"plugin\";s:29:\"mainwp-child/mainwp-child.php\";s:11:\"new_version\";s:7:\"4.4.0.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/mainwp-child/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/mainwp-child.4.4.0.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.4\";}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:23:\"wp-insert/wp-insert.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/wp-insert\";s:4:\"slug\";s:9:\"wp-insert\";s:6:\"plugin\";s:23:\"wp-insert/wp-insert.php\";s:11:\"new_version\";s:5:\"2.5.1\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wp-insert/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wp-insert.2.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/wp-insert/assets/icon-256x256.png?rev=984289\";s:2:\"1x\";s:61:\"https://ps.w.org/wp-insert/assets/icon-128x128.png?rev=984289\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:63:\"https://ps.w.org/wp-insert/assets/banner-772x250.jpg?rev=607069\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";b:0;s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";b:0;}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"20.3\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.3.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=2643727\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=2643727\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=2643727\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=2643727\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=2643727\";}s:8:\"requires\";s:3:\"6.0\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:6:\"5.6.20\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:7:{s:67:\"better-404-redirect-to-homepage/better-404-redirect-to-homepage.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:45:\"w.org/plugins/better-404-redirect-to-homepage\";s:4:\"slug\";s:31:\"better-404-redirect-to-homepage\";s:6:\"plugin\";s:67:\"better-404-redirect-to-homepage/better-404-redirect-to-homepage.php\";s:11:\"new_version\";s:5:\"1.0.0\";s:3:\"url\";s:62:\"https://wordpress.org/plugins/better-404-redirect-to-homepage/\";s:7:\"package\";s:80:\"https://downloads.wordpress.org/plugin/better-404-redirect-to-homepage.1.0.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:84:\"https://ps.w.org/better-404-redirect-to-homepage/assets/icon-128x128.png?rev=1898188\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.3\";}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:41:\"xml-sitemaps-for-videos/video-sitemap.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/xml-sitemaps-for-videos\";s:4:\"slug\";s:23:\"xml-sitemaps-for-videos\";s:6:\"plugin\";s:41:\"xml-sitemaps-for-videos/video-sitemap.php\";s:11:\"new_version\";s:5:\"2.6.1\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/xml-sitemaps-for-videos/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/xml-sitemaps-for-videos.2.6.1.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:67:\"https://s.w.org/plugins/geopattern-icon/xml-sitemaps-for-videos.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"2.9.2\";}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:45:\"remove-footer-credit/remove-footer-credit.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:34:\"w.org/plugins/remove-footer-credit\";s:4:\"slug\";s:20:\"remove-footer-credit\";s:6:\"plugin\";s:45:\"remove-footer-credit/remove-footer-credit.php\";s:11:\"new_version\";s:6:\"1.0.13\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/remove-footer-credit/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/remove-footer-credit.1.0.13.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:73:\"https://ps.w.org/remove-footer-credit/assets/icon-128x128.jpg?rev=1821059\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/remove-footer-credit/assets/banner-772x250.jpg?rev=1821059\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}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:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:6:\"plugin\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:11:\"new_version\";s:13:\"2.25.2-beta.1\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:0:{}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:0:\"\";s:12:\"requires_php\";s:0:\"\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:7:\"checked\";a:19:{s:19:\"akismet/akismet.php\";s:5:\"4.2.4\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.61\";s:91:\"all-in-one-wp-migration-multisite-extension/all-in-one-wp-migration-multisite-extension.php\";s:4:\"4.18\";s:67:\"better-404-redirect-to-homepage/better-404-redirect-to-homepage.php\";s:5:\"1.0.0\";s:43:\"broken-link-checker/broken-link-checker.php\";s:7:\"1.11.16\";s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.2\";s:29:\"contact-bank/contact-bank.php\";s:6:\"3.0.30\";s:41:\"xml-sitemaps-for-videos/video-sitemap.php\";s:5:\"2.6.1\";s:9:\"hello.php\";s:5:\"1.7.2\";s:37:\"wordpress-autoblogging/basic-auth.php\";s:3:\"0.1\";s:37:\"link-whisper-premium/link-whisper.php\";s:5:\"1.5.9\";s:29:\"mainwp-child/mainwp-child.php\";s:5:\"4.2.3\";s:45:\"remove-footer-credit/remove-footer-credit.php\";s:6:\"1.0.13\";s:49:\"scheduled-post-trigger/scheduled-post-trigger.php\";s:3:\"3.0\";s:81:\"simple-follow-me-social-buttons-widget/simple-follow-me-social-buttons-widget.php\";s:5:\"3.3.3\";s:23:\"spiderblocker/index.php\";s:5:\"1.3.1\";s:23:\"wp-insert/wp-insert.php\";s:5:\"2.5.0\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:13:\"2.25.2-beta.1\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"18.9\";}}','no'),(57980,'_transient_timeout_global_styles_gloriafood-restaurant','1678954956','no'),(57981,'_transient_global_styles_gloriafood-restaurant','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(57982,'_transient_timeout_global_styles_svg_filters_gloriafood-restaurant','1678954956','no'),(57983,'_transient_global_styles_svg_filters_gloriafood-restaurant','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=227 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 (15,12,'_edit_last','1'),(16,12,'_edit_lock','1598094482:1'),(17,12,'_esteem_font_icon','0'),(18,12,'_esteem_layout','default_layout'),(19,12,'_wp_page_template','default'),(20,14,'_edit_last','1'),(21,14,'_esteem_font_icon','0'),(22,14,'_esteem_layout','default_layout'),(23,14,'_wp_page_template','default'),(24,14,'_edit_lock','1598098894:1'),(25,14,'_yoast_wpseo_content_score','90'),(26,19,'_edit_last','1'),(27,19,'_edit_lock','1602283018:1'),(28,20,'_wp_attached_file','2020/08/healthys.jpg'),(29,20,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:778;s:6:\"height\";i:586;s:4:\"file\";s:20:\"2020/08/healthys.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"healthys-300x226.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"healthys-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:20:\"healthys-768x578.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:20:\"healthys-642x300.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:20:\"healthys-306x205.jpg\";s:5:\"width\";i:306;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-thumb\";a:4:{s:4:\"file\";s:20:\"healthys-350x316.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"service-featured\";a:4:{s:4:\"file\";s:20:\"healthys-600x330.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:330;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:{}}}'),(30,19,'_esteem_font_icon',NULL),(31,19,'_esteem_layout','default_layout'),(33,19,'_thumbnail_id','20'),(34,19,'_yoast_wpseo_primary_category','3'),(35,19,'_yoast_wpseo_content_score','90'),(40,24,'_wp_attached_file','2020/08/healthy-snacks-for-weight-loss-1200x628-facebook.jpg'),(41,24,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:60:\"2020/08/healthy-snacks-for-weight-loss-1200x628-facebook.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"healthy-snacks-for-weight-loss-1200x628-facebook-300x157.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"healthy-snacks-for-weight-loss-1200x628-facebook-1024x536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"healthy-snacks-for-weight-loss-1200x628-facebook-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:60:\"healthy-snacks-for-weight-loss-1200x628-facebook-768x402.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"glf_about_us_single\";a:4:{s:4:\"file\";s:60:\"healthy-snacks-for-weight-loss-1200x628-facebook-600x314.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:314;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"glf_about_us_double\";a:4:{s:4:\"file\";s:60:\"healthy-snacks-for-weight-loss-1200x628-facebook-300x157.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:157;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:{}}}'),(42,24,'_wp_attachment_custom_header_last_used_gloriafood-restaurant','1598248386'),(43,24,'_wp_attachment_is_custom_header','gloriafood-restaurant'),(48,27,'_wp_attached_file','2020/08/cropped-download.png'),(49,27,'_wp_attachment_context','site-icon'),(50,27,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:28:\"2020/08/cropped-download.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"cropped-download-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-download-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"glf_about_us_double\";a:4:{s:4:\"file\";s:28:\"cropped-download-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:28:\"cropped-download-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:28:\"cropped-download-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:28:\"cropped-download-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:26:\"cropped-download-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(52,29,'_wp_attached_file','2020/08/images.png'),(53,29,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:242;s:6:\"height\";i:208;s:4:\"file\";s:18:\"2020/08/images.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"images-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:{}}}'),(58,31,'_menu_item_type','custom'),(59,31,'_menu_item_menu_item_parent','0'),(60,31,'_menu_item_object_id','31'),(61,31,'_menu_item_object','custom'),(62,31,'_menu_item_target',''),(63,31,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(64,31,'_menu_item_xfn',''),(65,31,'_menu_item_url','http://supportfazilsay.com/'),(67,32,'_menu_item_type','post_type'),(68,32,'_menu_item_menu_item_parent','0'),(69,32,'_menu_item_object_id','12'),(70,32,'_menu_item_object','page'),(71,32,'_menu_item_target',''),(72,32,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(73,32,'_menu_item_xfn',''),(74,32,'_menu_item_url',''),(76,33,'_menu_item_type','taxonomy'),(77,33,'_menu_item_menu_item_parent','0'),(78,33,'_menu_item_object_id','3'),(79,33,'_menu_item_object','category'),(80,33,'_menu_item_target',''),(81,33,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(82,33,'_menu_item_xfn',''),(83,33,'_menu_item_url',''),(85,34,'_menu_item_type','post_type'),(86,34,'_menu_item_menu_item_parent','0'),(87,34,'_menu_item_object_id','17'),(88,34,'_menu_item_object','page'),(89,34,'_menu_item_target',''),(90,34,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(91,34,'_menu_item_xfn',''),(92,34,'_menu_item_url',''),(94,35,'_menu_item_type','post_type'),(95,35,'_menu_item_menu_item_parent','0'),(96,35,'_menu_item_object_id','14'),(97,35,'_menu_item_object','page'),(98,35,'_menu_item_target',''),(99,35,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(100,35,'_menu_item_xfn',''),(101,35,'_menu_item_url',''),(107,40,'_wp_attached_file','2020/08/aeb9058f44dd1f4a35349ef9f3458b8a.jpg'),(108,40,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:250;s:4:\"file\";s:44:\"2020/08/aeb9058f44dd1f4a35349ef9f3458b8a.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"aeb9058f44dd1f4a35349ef9f3458b8a-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:{}}}'),(109,41,'_wp_attached_file','2020/08/new_years_resolutions-e1598249801204.jpg'),(110,41,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:582;s:6:\"height\";i:488;s:4:\"file\";s:48:\"2020/08/new_years_resolutions-e1598249801204.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"new_years_resolutions-e1598249801204-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"new_years_resolutions-e1598249801204-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"new_years_resolutions-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"glf_about_us_single\";a:4:{s:4:\"file\";s:33:\"new_years_resolutions-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"glf_about_us_double\";a:4:{s:4:\"file\";s:48:\"new_years_resolutions-e1598249801204-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:16:\"ALEX SEREBRYAKOV\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:118:\"Healthy food is healthy life. Handsome young man holding fresh yellow pepper and smiling while standing in the kitchen\";s:17:\"created_timestamp\";s:10:\"1424190033\";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:118:\"Healthy food is healthy life. Handsome young man holding fresh yellow pepper and smiling while standing in the kitchen\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:45:{i:0;s:16:\"Domestic Kitchen\";i:1;s:9:\"Groceries\";i:2;s:3:\"Men\";i:3;s:12:\"One Man Only\";i:4;s:5:\"Adult\";i:5;s:11:\"Young Adult\";i:6;s:16:\"Group Of Objects\";i:7;s:9:\"Vegetable\";i:8;s:13:\"Multi Colored\";i:9;s:7:\"Indoors\";i:10;s:15:\"Kitchen Utensil\";i:11;s:13:\"Kitchen Knife\";i:12;s:7:\"Cooking\";i:13;s:10:\"Lifestyles\";i:14;s:9:\"Caucasian\";i:15;s:15:\"Attractive Male\";i:16;s:11:\"Male Beauty\";i:17;s:6:\"Casual\";i:18;s:8:\"Standing\";i:19;s:7:\"Smiling\";i:20;s:21:\"Expressing Positivity\";i:21;s:6:\"Candid\";i:22;s:9:\"Enjoyment\";i:23;s:9:\"Happiness\";i:24;s:10:\"Relaxation\";i:25;s:17:\"Looking At Camera\";i:26;s:13:\"Domestic Life\";i:27;s:9:\"Freshness\";i:28;s:14:\"Healthy Eating\";i:29;s:6:\"Pepper\";i:30;s:6:\"Tomato\";i:31;s:6:\"Carrot\";i:32;s:14:\"Food And Drink\";i:33;s:4:\"Food\";i:34;s:16:\"Leisure Activity\";i:35;s:8:\"Carefree\";i:36;s:13:\"Home Interior\";i:37;s:7:\"Stubble\";i:38;s:9:\"Variation\";i:39;s:8:\"Concepts\";i:40;s:7:\"Organic\";i:41;s:4:\"Diet\";i:42;s:8:\"Vitality\";i:43;s:11:\"Preparation\";i:44;s:6:\"People\";}}}'),(111,41,'_edit_lock','1598249730:1'),(113,41,'_wp_attachment_backup_sizes','a:6:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:850;s:6:\"height\";i:565;s:4:\"file\";s:25:\"new_years_resolutions.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:33:\"new_years_resolutions-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:33:\"new_years_resolutions-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:33:\"new_years_resolutions-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"glf_about_us_single-orig\";a:4:{s:4:\"file\";s:33:\"new_years_resolutions-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"glf_about_us_double-orig\";a:4:{s:4:\"file\";s:33:\"new_years_resolutions-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(114,41,'_edit_last','1'),(118,40,'_edit_lock','1598249918:1'),(132,49,'_wp_attached_file','2020/08/cropped-logo-e1598437169576.png'),(133,49,'_wp_attachment_context','custom-logo'),(134,49,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:100;s:4:\"file\";s:39:\"2020/08/cropped-logo-e1598437169576.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-logo-e1598437169576-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(137,51,'_wp_attached_file','2020/08/cropped-logo-1.png'),(138,51,'_wp_attachment_context','custom-logo'),(139,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:100;s:4:\"file\";s:26:\"2020/08/cropped-logo-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-logo-1-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(151,55,'_wp_attached_file','2020/08/cropped-cover.png'),(152,55,'_wp_attachment_context','custom-logo'),(153,55,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:100;s:4:\"file\";s:25:\"2020/08/cropped-cover.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"cropped-cover-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(155,56,'_wp_attached_file','2020/08/logo-e1598437838642.png'),(156,56,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:445;s:6:\"height\";i:141;s:4:\"file\";s:31:\"2020/08/logo-e1598437838642.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"logo-e1598437838642-300x95.png\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"logo-e1598437838642-150x141.png\";s:5:\"width\";i:150;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"glf_about_us_double\";a:4:{s:4:\"file\";s:30:\"logo-e1598437838642-300x95.png\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(157,56,'_edit_lock','1598437710:1'),(159,56,'_wp_attachment_backup_sizes','a:4:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:520;s:6:\"height\";i:214;s:4:\"file\";s:8:\"logo.png\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:16:\"logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:16:\"logo-300x123.png\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"glf_about_us_double-orig\";a:4:{s:4:\"file\";s:16:\"logo-300x123.png\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";}}'),(160,56,'_edit_last','1'),(161,58,'_wp_attached_file','2020/08/cropped-logo-e1598437838642.png'),(162,58,'_wp_attachment_context','custom-logo'),(163,58,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:100;s:4:\"file\";s:39:\"2020/08/cropped-logo-e1598437838642.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-logo-e1598437838642-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(169,62,'_edit_last','1'),(170,62,'_edit_lock','1602283274:1'),(171,63,'_wp_attached_file','2020/10/892jq1.jpg'),(172,63,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:18:\"2020/10/892jq1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"892jq1-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:{}}}'),(173,62,'_oembed_63332b65fec9952c7b00388da207a2fd','<iframe title=\"Minicreditos rapidos\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/SuWp5n6UqMs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(174,62,'_oembed_time_63332b65fec9952c7b00388da207a2fd','1602283393'),(175,62,'_thumbnail_id','63'),(176,62,'_yoast_wpseo_content_score','60'),(177,62,'_yoast_wpseo_primary_category','5'),(178,58,'_oembed_c1c0801669022aaf88a12eaf5ee505ed','{{unknown}}'),(179,55,'_oembed_cc26389dbdcab43fbf20f1680a2d5eee','{{unknown}}'),(180,51,'_oembed_1722ebe863bd01d6e9f7042557ef75d8','{{unknown}}'),(181,49,'_oembed_7097d251163132544bb8ed4e5eb701cc','{{unknown}}'),(182,27,'_oembed_e9815961f85e1544b87716fcaadd214f','{{unknown}}'),(183,68,'_edit_last','1'),(184,68,'_edit_lock','1623702106:1'),(185,68,'_yoast_wpseo_primary_category','6'),(186,68,'_yoast_wpseo_content_score','60'),(187,68,'_yoast_wpseo_estimated-reading-time-minutes','3'),(188,68,'_oembed_5d8f5bb74c4bbb4362e66b0ec6d448c2','<iframe title=\"What is a VPN? Experts Answer!\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/WCyF3qMtycE?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(189,68,'_oembed_time_5d8f5bb74c4bbb4362e66b0ec6d448c2','1623664331'),(190,71,'_wp_attached_file','2021/06/hakcnak21.jpg'),(191,71,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:425;s:4:\"file\";s:21:\"2021/06/hakcnak21.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"hakcnak21-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"hakcnak21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"glf_about_us_single\";a:4:{s:4:\"file\";s:21:\"hakcnak21-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"glf_about_us_double\";a:4:{s:4:\"file\";s:21:\"hakcnak21-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:{}}}'),(192,68,'_thumbnail_id','71'),(193,75,'_wp_attached_file','2021/09/pexels-moose-photos-1037912-scaled.jpg'),(194,75,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:46:\"2021/09/pexels-moose-photos-1037912-scaled.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"pexels-moose-photos-1037912-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:40:\"pexels-moose-photos-1037912-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"pexels-moose-photos-1037912-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:39:\"pexels-moose-photos-1037912-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"pexels-moose-photos-1037912-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:41:\"pexels-moose-photos-1037912-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"pexels-moose-photos-1037912-1568x1047.jpg\";s:5:\"width\";i:1568;s:6:\"height\";i:1047;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"glf_background\";a:4:{s:4:\"file\";s:41:\"pexels-moose-photos-1037912-1920x1282.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1282;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"glf_about_us_single\";a:4:{s:4:\"file\";s:39:\"pexels-moose-photos-1037912-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"glf_about_us_double\";a:4:{s:4:\"file\";s:39:\"pexels-moose-photos-1037912-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:31:\"pexels-moose-photos-1037912.jpg\";}'),(195,74,'_edit_last','1'),(196,74,'_edit_lock','1632142161:1'),(197,74,'_thumbnail_id','75'),(199,74,'_yoast_wpseo_content_score','30'),(200,74,'_yoast_wpseo_estimated-reading-time-minutes',''),(201,74,'_wp_old_date','2021-09-20'),(202,74,'_yoast_wpseo_primary_category','7'),(203,74,'_oembed_390d51e447ff08ca9a79042da62ab593','<iframe title=\"HUGE ETH ETHEREUM BREAKOUT SOON\" width=\"640\" height=\"480\" src=\"https://www.youtube.com/embed/91OhJ5WXgMM?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(204,74,'_oembed_time_390d51e447ff08ca9a79042da62ab593','1632142232'),(205,77,'_oembed_3d368bdd6fe6b8fe4d18863c2e336071','<iframe title=\"THE CAUSE OF THE BITCOIN CRASH\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/MuD-Xf4jy24?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(206,77,'_oembed_time_3d368bdd6fe6b8fe4d18863c2e336071','1632400373'),(207,77,'_edit_last','1'),(208,77,'_edit_lock','1632400592:1'),(209,78,'_wp_attached_file','2021/09/luwadlin-bosman-P_HRPYpFTNA-unsplash-scaled.jpg'),(210,78,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:55:\"2021/09/luwadlin-bosman-P_HRPYpFTNA-unsplash-scaled.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"luwadlin-bosman-P_HRPYpFTNA-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"luwadlin-bosman-P_HRPYpFTNA-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"luwadlin-bosman-P_HRPYpFTNA-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"luwadlin-bosman-P_HRPYpFTNA-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"luwadlin-bosman-P_HRPYpFTNA-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:50:\"luwadlin-bosman-P_HRPYpFTNA-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"luwadlin-bosman-P_HRPYpFTNA-unsplash-1568x1045.jpg\";s:5:\"width\";i:1568;s:6:\"height\";i:1045;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"glf_background\";a:4:{s:4:\"file\";s:50:\"luwadlin-bosman-P_HRPYpFTNA-unsplash-1920x1280.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"glf_about_us_single\";a:4:{s:4:\"file\";s:48:\"luwadlin-bosman-P_HRPYpFTNA-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"glf_about_us_double\";a:4:{s:4:\"file\";s:48:\"luwadlin-bosman-P_HRPYpFTNA-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:40:\"luwadlin-bosman-P_HRPYpFTNA-unsplash.jpg\";}'),(211,77,'_thumbnail_id','78'),(213,77,'_yoast_wpseo_content_score','30'),(214,77,'_yoast_wpseo_estimated-reading-time-minutes','2'),(215,77,'_wp_old_date','2021-09-23'),(216,77,'_yoast_wpseo_primary_category','8'),(217,85,'_oembed_0196e25346da9c20d8523aa05e20794f','{{unknown}}'),(218,86,'_wp_attached_file','2021/12/pexels-olya-kobruseva-8358136.jpg'),(219,86,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:41:\"2021/12/pexels-olya-kobruseva-8358136.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"pexels-olya-kobruseva-8358136-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"pexels-olya-kobruseva-8358136-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:41:\"pexels-olya-kobruseva-8358136-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"glf_about_us_single\";a:4:{s:4:\"file\";s:41:\"pexels-olya-kobruseva-8358136-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"glf_about_us_double\";a:4:{s:4:\"file\";s:41:\"pexels-olya-kobruseva-8358136-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:{}}}'),(220,85,'_edit_last','1'),(221,85,'_thumbnail_id','86'),(222,85,'_yoast_wpseo_content_score','90'),(223,85,'_yoast_wpseo_estimated-reading-time-minutes','3'),(224,85,'_yoast_wpseo_primary_category','7'),(225,85,'_edit_lock','1638969368:1');
/*!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=89 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 (12,1,'2020-08-22 11:07:08','2020-08-22 11:07:08','','Welcome','','publish','closed','closed','','welcome','','','2020-08-22 11:07:08','2020-08-22 11:07:08','',0,'http://supportfazilsay.com/?page_id=12',0,'page','',0),(13,1,'2020-08-22 11:07:08','2020-08-22 11:07:08','','Welcome','','inherit','closed','closed','','12-revision-v1','','','2020-08-22 11:07:08','2020-08-22 11:07:08','',12,'http://supportfazilsay.com/12-revision-v1/',0,'revision','',0),(14,1,'2020-08-22 11:14:08','2020-08-22 11:14:08','[contact_bank form_id=\"6\" form_title=\"show\" form_description=\"\"][/contact_bank]','Contact Us','','publish','closed','closed','','contact-us','','','2020-08-22 12:18:25','2020-08-22 12:18:25','',0,'http://supportfazilsay.com/?page_id=14',0,'page','',0),(15,1,'2020-08-22 11:14:08','2020-08-22 11:14:08','','Contact Us','','inherit','closed','closed','','14-revision-v1','','','2020-08-22 11:14:08','2020-08-22 11:14:08','',14,'http://supportfazilsay.com/14-revision-v1/',0,'revision','',0),(16,1,'2020-08-22 11:17:02','2020-08-22 11:17:02','[contact_bank form_id=\"6\" form_title=\"show\" form_description=\"\"][/contact_bank]','Contact Us','','inherit','closed','closed','','14-revision-v1','','','2020-08-22 11:17:02','2020-08-22 11:17:02','',14,'http://supportfazilsay.com/14-revision-v1/',0,'revision','',0),(17,1,'2020-08-22 12:20:04','2020-08-22 12:20:04','','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2020-08-22 12:20:04','2020-08-22 12:20:04','',0,'http://supportfazilsay.com/privacy-policy/',0,'page','',0),(18,1,'2020-08-22 12:20:45','2020-08-22 12:20:45','','Terms and Conditions','','publish','closed','closed','','terms-and-conditions','','','2020-08-22 12:20:45','2020-08-22 12:20:45','',0,'http://supportfazilsay.com/terms-and-conditions/',0,'page','',0),(19,1,'2020-08-24 05:14:17','2020-08-24 05:14:17','Maintain a healthy weight. Being overweight places extra strain on your weight-bearing joints, such as your knees, ankles, hips, and back. Staying active can help to reduce stiffness in your joints. Apples are just one of many superfoods for healthy joints. This classic snack can be a great way to help offset joint pain and <a href=\"https://www.medicalfacts.nl/2020/10/04/handige-diensten-voor-mantelzorgers-die-vergoed-worden/\">inflammation</a>.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/q0kdQ_YnS30\" width=\"800\" height=\"360\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','Healthy Snacks For Healthy Joints','','publish','closed','closed','','healthy-snacks-for-healthy-joints','','','2020-10-09 22:38:35','2020-10-09 22:38:35','',0,'http://supportfazilsay.com/?p=19',0,'post','',0),(20,1,'2020-08-24 05:11:42','2020-08-24 05:11:42','','healthys','','inherit','closed','closed','','healthys','','','2020-08-24 05:11:42','2020-08-24 05:11:42','',19,'http://supportfazilsay.com/wp-content/uploads/2020/08/healthys.jpg',0,'attachment','image/jpeg',0),(21,1,'2020-08-24 05:14:17','2020-08-24 05:14:17','Maintain a healthy weight. Being overweight places extra strain on your weight-bearing joints, such as your knees, ankles, hips, and back. Staying active can help to reduce stiffness in your joints. Apples are just one of many superfoods for healthy joints. This classic snack can be a great way to help offset joint pain and inflammation.\r\n\r\n<iframe width=\"800\" height=\"360\" src=\"https://www.youtube.com/embed/q0kdQ_YnS30\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','Healthy Snacks For Healthy Joints','','inherit','closed','closed','','19-revision-v1','','','2020-08-24 05:14:17','2020-08-24 05:14:17','',19,'http://supportfazilsay.com/19-revision-v1/',0,'revision','',0),(24,1,'2020-08-24 05:52:50','2020-08-24 05:52:50','','healthy-snacks-for-weight-loss-1200x628-facebook','','inherit','closed','closed','','healthy-snacks-for-weight-loss-1200x628-facebook','','','2020-08-24 05:52:50','2020-08-24 05:52:50','',0,'http://supportfazilsay.com/wp-content/uploads/2020/08/healthy-snacks-for-weight-loss-1200x628-facebook.jpg',0,'attachment','image/jpeg',0),(27,1,'2020-08-24 05:54:31','2020-08-24 05:54:31','http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-download.png','cropped-download.png','','inherit','closed','closed','','cropped-download-png','','','2020-08-24 05:54:31','2020-08-24 05:54:31','',0,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-download.png',0,'attachment','image/png',0),(29,1,'2020-08-24 06:03:19','2020-08-24 06:03:19','','images','','inherit','closed','closed','','images','','','2020-08-24 06:03:19','2020-08-24 06:03:19','',0,'http://supportfazilsay.com/wp-content/uploads/2020/08/images.png',0,'attachment','image/png',0),(31,1,'2020-08-24 06:05:50','2020-08-24 06:05:50','','Home','','publish','closed','closed','','home','','','2020-08-24 06:05:50','2020-08-24 06:05:50','',0,'http://supportfazilsay.com/?p=31',1,'nav_menu_item','',0),(32,1,'2020-08-24 06:05:50','2020-08-24 06:05:50',' ','','','publish','closed','closed','','32','','','2020-08-24 06:05:50','2020-08-24 06:05:50','',0,'http://supportfazilsay.com/?p=32',2,'nav_menu_item','',0),(33,1,'2020-08-24 06:05:50','2020-08-24 06:05:50',' ','','','publish','closed','closed','','33','','','2020-08-24 06:05:50','2020-08-24 06:05:50','',0,'http://supportfazilsay.com/?p=33',3,'nav_menu_item','',0),(34,1,'2020-08-24 06:05:50','2020-08-24 06:05:50',' ','','','publish','closed','closed','','34','','','2020-08-24 06:05:50','2020-08-24 06:05:50','',0,'http://supportfazilsay.com/?p=34',4,'nav_menu_item','',0),(35,1,'2020-08-24 06:05:50','2020-08-24 06:05:50',' ','','','publish','closed','closed','','35','','','2020-08-24 06:05:50','2020-08-24 06:05:50','',0,'http://supportfazilsay.com/?p=35',5,'nav_menu_item','',0),(38,1,'2020-08-24 06:13:18','2020-08-24 06:13:18','footer.site-footer * {\n color: #fff; \n}\nfooter.site-footer a, footer.site-footer a:hover, footer.site-footer a:focus { \ncolor: #fff; \n}','gloriafood-restaurant','','publish','closed','closed','','gloriafood-restaurant','','','2020-08-24 06:20:59','2020-08-24 06:20:59','',0,'http://supportfazilsay.com/gloriafood-restaurant/',0,'custom_css','',0),(39,1,'2020-08-24 06:13:18','2020-08-24 06:13:18','footer.site-footer * {\n color: #fff; \n}','gloriafood-restaurant','','inherit','closed','closed','','38-revision-v1','','','2020-08-24 06:13:18','2020-08-24 06:13:18','',38,'http://supportfazilsay.com/38-revision-v1/',0,'revision','',0),(40,1,'2020-08-24 06:15:40','2020-08-24 06:15:40','','aeb9058f44dd1f4a35349ef9f3458b8a','','inherit','closed','closed','','aeb9058f44dd1f4a35349ef9f3458b8a','','','2020-08-24 06:15:40','2020-08-24 06:15:40','',0,'http://supportfazilsay.com/wp-content/uploads/2020/08/aeb9058f44dd1f4a35349ef9f3458b8a.jpg',0,'attachment','image/jpeg',0),(41,1,'2020-08-24 06:15:49','2020-08-24 06:15:49','','Healthy food is healthy life. Handsome young man holding fresh yellow pepper and smiling while standing in the kitchen','Healthy food is healthy life. Handsome young man holding fresh yellow pepper and smiling while standing in the kitchen','inherit','closed','closed','','healthy-food-is-healthy-life-handsome-young-man-holding-fresh-yellow-pepper-and-smiling-while-standing-in-the-kitchen','','','2020-08-24 06:16:47','2020-08-24 06:16:47','',0,'http://supportfazilsay.com/wp-content/uploads/2020/08/new_years_resolutions.jpg',0,'attachment','image/jpeg',0),(47,1,'2020-08-24 06:20:59','2020-08-24 06:20:59','footer.site-footer * {\n color: #fff; \n}\nfooter.site-footer a, footer.site-footer a:hover, footer.site-footer a:focus { \ncolor: #fff; \n}','gloriafood-restaurant','','inherit','closed','closed','','38-revision-v1','','','2020-08-24 06:20:59','2020-08-24 06:20:59','',38,'http://supportfazilsay.com/38-revision-v1/',0,'revision','',0),(49,1,'2020-08-26 10:21:24','2020-08-26 10:21:24','http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-e1598437169576.png','cropped-logo-e1598437169576.png','','inherit','closed','closed','','cropped-logo-e1598437169576-png','','','2020-08-26 10:21:24','2020-08-26 10:21:24','',0,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-e1598437169576.png',0,'attachment','image/png',0),(51,1,'2020-08-26 10:22:17','2020-08-26 10:22:17','http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-1.png','cropped-logo-1.png','','inherit','closed','closed','','cropped-logo-1-png','','','2020-08-26 10:22:17','2020-08-26 10:22:17','',0,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-1.png',0,'attachment','image/png',0),(55,1,'2020-08-26 10:29:37','2020-08-26 10:29:37','http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-cover.png','cropped-cover.png','','inherit','closed','closed','','cropped-cover-png','','','2020-08-26 10:29:37','2020-08-26 10:29:37','',0,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-cover.png',0,'attachment','image/png',0),(56,1,'2020-08-26 10:30:12','2020-08-26 10:30:12','','logo','','inherit','closed','closed','','logo','','','2020-08-26 10:30:43','2020-08-26 10:30:43','',0,'http://supportfazilsay.com/wp-content/uploads/2020/08/logo.png',0,'attachment','image/png',0),(58,1,'2020-08-26 10:33:53','2020-08-26 10:33:53','http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-e1598437838642.png','cropped-logo-e1598437838642.png','','inherit','closed','closed','','cropped-logo-e1598437838642-png','','','2020-08-26 10:33:53','2020-08-26 10:33:53','',0,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-e1598437838642.png',0,'attachment','image/png',0),(61,1,'2020-10-09 22:38:35','2020-10-09 22:38:35','Maintain a healthy weight. Being overweight places extra strain on your weight-bearing joints, such as your knees, ankles, hips, and back. Staying active can help to reduce stiffness in your joints. Apples are just one of many superfoods for healthy joints. This classic snack can be a great way to help offset joint pain and <a href=\"https://www.medicalfacts.nl/2020/10/04/handige-diensten-voor-mantelzorgers-die-vergoed-worden/\">inflammation</a>.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/q0kdQ_YnS30\" width=\"800\" height=\"360\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','Healthy Snacks For Healthy Joints','','inherit','closed','closed','','19-revision-v1','','','2020-10-09 22:38:35','2020-10-09 22:38:35','',19,'http://supportfazilsay.com/19-revision-v1/',0,'revision','',0),(62,1,'2020-10-16 21:02:17','2020-10-16 21:02:17','These concerns are certainly well-founded, after all, it\'s not always easy. However, this does not mean that it is not possible at all. As a starter there are several ways you can follow to get capital in Spain for example with the <a href=\"https://www.p4r.es/\">minicreditos con asnef en Spain</a>. Let\'s see which ones they are!\r\n<h2>Taking out a personal loan</h2>\r\nOf all the people looking for start-up capital, a large part will come out of the personal loan. This is not strange of course, because with this loan you have a nice capital you can use in an easy way. With the personal loan you get the whole amount paid out at once, you will not get it in installments. For entrepreneurs who have to make large investments in the beginning, this is very handy. Think for example of stores that need to buy special equipment, such as an oven or a professional coffee machine. Because of the larger amounts these people can make the investment at once and they don\'t have to wait until they have saved enough. The personal loan like an <a href=\"https://www.p4r.es/minicreditos/prestamo-1500-euros/\">creditos 1500 euros</a> is therefore an excellent choice for beginners.\r\n\r\nhttps://www.youtube.com/watch?v=SuWp5n6UqMs\r\n<h2>Online lenders</h2>\r\nMore and more lenders are appearing on the internet. With these lenders you can dispose of a certain amount many times faster, so there are fewer conditions than with a loan from the bank. However, you have to keep in mind that an online lender will of course always be a lot smaller than a bank. This means that there are more risks involved, because you do not know whether the loan will always exist and whether this party will be able to pay. It is therefore useful to read a bit into these online providers before you suddenly take out a loan. If you are looking for reliable parties then this is also a good way to get capital without any problems.\r\n<h2>Venture capital</h2>\r\nThis option is a bit less easy, but you can pick up a lot with it. With venture capital you are looking for people who would like to invest in your company. These are the people who see a future in your idea, the \'inventure capitalists\' are the people who give these start ups the chance to grow up. Of course it is not always easy to find these people, but if you have a good idea then this will be really easy. The costs of this loan are many times lower than other types of loans, often you pay in shares in the company. This way it will not cost you anything at first, you can pay off the loan when your business is going well.','The biggest reason people don\'t start for themselves is financial, they find it difficult to get capital, how can you get a loan or mini kredit?','','publish','closed','closed','','the-biggest-reason-people-dont-start-for-themselves-is-financial-they-find-it-difficult-to-get-capital-how-can-you-get-a-loan-or-mini-kredit','','','2020-10-09 22:43:25','2020-10-09 22:43:25','',0,'http://supportfazilsay.com/?p=62',0,'post','',0),(63,1,'2020-10-09 22:40:30','2020-10-09 22:40:30','','892jq1','','inherit','closed','closed','','892jq1','','','2020-10-09 22:40:30','2020-10-09 22:40:30','',62,'http://supportfazilsay.com/wp-content/uploads/2020/10/892jq1.jpg',0,'attachment','image/jpeg',0),(64,1,'2020-10-09 22:43:25','2020-10-09 22:43:25','These concerns are certainly well-founded, after all, it\'s not always easy. However, this does not mean that it is not possible at all. As a starter there are several ways you can follow to get capital in Spain for example with the <a href=\"https://www.p4r.es/\">minicreditos con asnef en Spain</a>. Let\'s see which ones they are!\r\n<h2>Taking out a personal loan</h2>\r\nOf all the people looking for start-up capital, a large part will come out of the personal loan. This is not strange of course, because with this loan you have a nice capital you can use in an easy way. With the personal loan you get the whole amount paid out at once, you will not get it in installments. For entrepreneurs who have to make large investments in the beginning, this is very handy. Think for example of stores that need to buy special equipment, such as an oven or a professional coffee machine. Because of the larger amounts these people can make the investment at once and they don\'t have to wait until they have saved enough. The personal loan like an <a href=\"https://www.p4r.es/minicreditos/prestamo-1500-euros/\">creditos 1500 euros</a> is therefore an excellent choice for beginners.\r\n\r\nhttps://www.youtube.com/watch?v=SuWp5n6UqMs\r\n<h2>Online lenders</h2>\r\nMore and more lenders are appearing on the internet. With these lenders you can dispose of a certain amount many times faster, so there are fewer conditions than with a loan from the bank. However, you have to keep in mind that an online lender will of course always be a lot smaller than a bank. This means that there are more risks involved, because you do not know whether the loan will always exist and whether this party will be able to pay. It is therefore useful to read a bit into these online providers before you suddenly take out a loan. If you are looking for reliable parties then this is also a good way to get capital without any problems.\r\n<h2>Venture capital</h2>\r\nThis option is a bit less easy, but you can pick up a lot with it. With venture capital you are looking for people who would like to invest in your company. These are the people who see a future in your idea, the \'inventure capitalists\' are the people who give these start ups the chance to grow up. Of course it is not always easy to find these people, but if you have a good idea then this will be really easy. The costs of this loan are many times lower than other types of loans, often you pay in shares in the company. This way it will not cost you anything at first, you can pay off the loan when your business is going well.','The biggest reason people don\'t start for themselves is financial, they find it difficult to get capital, how can you get a loan or mini kredit?','','inherit','closed','closed','','62-revision-v1','','','2020-10-09 22:43:25','2020-10-09 22:43:25','',62,'http://supportfazilsay.com/62-revision-v1/',0,'revision','',0),(66,0,'2021-04-25 17:52:55','2021-04-25 17:52:55','<iframe title=\"Minicreditos rapidos\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/SuWp5n6UqMs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','63332b65fec9952c7b00388da207a2fd','','','2021-04-25 17:52:55','2021-04-25 17:52:55','',0,'http://supportfazilsay.com/63332b65fec9952c7b00388da207a2fd/',0,'oembed_cache','',0),(68,1,'2021-06-15 11:30:09','2021-06-15 11:30:09','China is a totalitarian government that wants complete control over its people. They have set up a protection called “the Chinese firewall”. It is a criminal offense for Chinese residents to use social media and stream content that is illegal in China. This is basically because the authorities are afraid that there will be propaganda that goes against government policy. This can be very strange for tourists, as most people are used to sharing photos’s on social media like Instagram and talking to friends on Messenger or check the <a href=\"https://www.globalwatchonline.com/it/vpn/reviews/nord-vpn/\">nordvpn opinioni @ Globalwatchonline.it</a>\r\n<h2><strong>Is it illegal to use VPN in China as a tourist?</strong></h2>\r\nVPN is not immediately illegal in China, but there are some rules that apply. This means that only a few VPN providers are allowed in the country. These providers have special agreements with the Chinese authorities, and these are also filed. So when you go to China you don\'t have to be afraid of breaking the law.\r\n<h2><strong>Best VPN for China</strong></h2>\r\nThere are extremely many VPN services, but not all of them work in China. Below, we list a few VPN’s that we think work very well in China.\r\n<h3><strong>ExpressVPN </strong></h3>\r\n<ul>\r\n <li>Overcome the “Great Wall of China”</li>\r\n <li>Fast and stable connection</li>\r\n</ul>\r\nIn our test of VPN providers, ExpressVPN is the winner. This is a service that has everything, and you can always rely on it for optimal performance. They have a lot of servers in 94 countries. The number of servers makes the speed very high. A VPN normally causes some loss of speed, but with ExpressVPN this is not a problem; the difference is virtually not noticeable.\r\n\r\nSafety is also something that should be emphasized when choosing a VPN. ExpressVPN is based in the British Virgin Islands, so they are not legally required to store any of their users\' information. In addition, they have double encryption, and an <em>kill switch</em> in case the connection is dropped with the <a href=\"https://www.globalwatchonline.com/fr/vpn/guide/meilleur-vpn/\">meilleur VPN en 2021.</a>\r\n\r\nThe price varies according to the subscription period. One month costs about € 9, but this price is halved if you choose the longest subscription of 15 months. You can also try the risk-free service for 30 days to get a full refund if you are not satisfied.\r\n<div>\r\n<div><strong>NordVPN</strong></div>\r\n</div>\r\n<ul>\r\n <li>Surf anonymously in China</li>\r\n <li>High speed</li>\r\n <li>Servers in 60 countries</li>\r\n</ul>\r\nJust after ExpressVPN comes NordVPN. This is also a very good service that scores high on all points. They offer servers in more than 60 countries. Also, you won\'t notice any speed drop with NordVPN because they have many and fast servers. This allows you to stream content in HD and browse the web normally.\r\n\r\nLike ExpressVPN, NordVPN has double encryption. They use <em>TOR over VPN</em>, which provides additional protection. In addition, they are based in Panama, so they don\'t store any information either. In addition, they also offer protection against DNS and IP leaks, as well as an <em>kill switch</em>.\r\n\r\nNordVPN offers a membership for up to 3 years, which costs only € 3 per month. If you want the service for a month, it\'s about € 9, but a 30-day money-back guarantee applies.\r\n\r\nhttps://www.youtube.com/watch?v=WCyF3qMtycE','Why are there restrictions for internetting in China? And how can a VPN help you out with this very issue?','','publish','closed','closed','','why-are-there-restrictions-for-internetting-in-china-and-how-can-a-vpn-help-you-out-with-this-very-issue','','','2021-06-14 20:24:01','2021-06-14 20:24:01','',0,'http://supportfazilsay.com/?p=68',0,'post','',0),(69,1,'2021-06-13 19:38:06','2021-06-13 19:38:06','China is a totalitarian government that wants complete control over its people. They have set up a protection called “the Chinese firewall”. It is a criminal offense for Chinese residents to use social media and stream content that is illegal in China. This is basically because the authorities are afraid that there will be propaganda that goes against government policy. This can be very strange for tourists, as most people are used to sharing photos’s on social media like Instagram and talking to friends on Messenger or WhatsApp.\r\n<h2><strong>Is it illegal to use VPN in China as a tourist?</strong></h2>\r\nVPN is not immediately illegal in China, but there are some rules that apply. This means that only a few VPN providers are allowed in the country. These providers have special agreements with the Chinese authorities, and these are also filed. So when you go to China you don\'t have to be afraid of breaking the law.\r\n<h2><strong>Best VPN for China</strong></h2>\r\nThere are extremely many VPN services, but not all of them work in China. Below, we list a few VPN’s that we think work very well in China.\r\n<h3><strong>ExpressVPN </strong></h3>\r\n<ul>\r\n <li>Overcome the “Great Wall of China”</li>\r\n <li>Fast and stable connection</li>\r\n</ul>\r\nIn our test of VPN providers, ExpressVPN is the winner. This is a service that has everything, and you can always rely on it for optimal performance. They have a lot of servers in 94 countries. The number of servers makes the speed very high. A VPN normally causes some loss of speed, but with ExpressVPN this is not a problem; the difference is virtually not noticeable.\r\n\r\nSafety is also something that should be emphasized when choosing a VPN. ExpressVPN is based in the British Virgin Islands, so they are not legally required to store any of their users\' information. In addition, they have double encryption, and an <em>kill switch</em> in case the connection is dropped.\r\n\r\nThe price varies according to the subscription period. One month costs about € 9, but this price is halved if you choose the longest subscription of 15 months. You can also try the risk-free service for 30 days to get a full refund if you are not satisfied.\r\n<div>\r\n<div><strong>NordVPN</strong></div>\r\n</div>\r\n<ul>\r\n <li>Surf anonymously in China</li>\r\n <li>High speed</li>\r\n <li>Servers in 60 countries</li>\r\n</ul>\r\nJust after ExpressVPN comes NordVPN. This is also a very good service that scores high on all points. They offer servers in more than 60 countries. Also, you won\'t notice any speed drop with NordVPN because they have many and fast servers. This allows you to stream content in HD and browse the web normally.\r\n\r\nLike ExpressVPN, NordVPN has double encryption. They use <em>TOR over VPN</em>, which provides additional protection. In addition, they are based in Panama, so they don\'t store any information either. In addition, they also offer protection against DNS and IP leaks, as well as an <em>kill switch</em>.\r\n\r\nNordVPN offers a membership for up to 3 years, which costs only € 3 per month. If you want the service for a month, it\'s about € 9, but a 30-day money-back guarantee applies.','Why are there restrictions for internetting in China? And how can a VPN help you out with this very issue?','','inherit','closed','closed','','68-revision-v1','','','2021-06-13 19:38:06','2021-06-13 19:38:06','',68,'http://supportfazilsay.com/?p=69',0,'revision','',0),(70,1,'2021-06-14 09:52:13','2021-06-14 09:52:13','China is a totalitarian government that wants complete control over its people. They have set up a protection called “the Chinese firewall”. It is a criminal offense for Chinese residents to use social media and stream content that is illegal in China. This is basically because the authorities are afraid that there will be propaganda that goes against government policy. This can be very strange for tourists, as most people are used to sharing photos’s on social media like Instagram and talking to friends on Messenger or WhatsApp.\r\n<h2><strong>Is it illegal to use VPN in China as a tourist?</strong></h2>\r\nVPN is not immediately illegal in China, but there are some rules that apply. This means that only a few VPN providers are allowed in the country. These providers have special agreements with the Chinese authorities, and these are also filed. So when you go to China you don\'t have to be afraid of breaking the law.\r\n<h2><strong>Best VPN for China</strong></h2>\r\nThere are extremely many VPN services, but not all of them work in China. Below, we list a few VPN’s that we think work very well in China.\r\n<h3><strong>ExpressVPN </strong></h3>\r\n<ul>\r\n <li>Overcome the “Great Wall of China”</li>\r\n <li>Fast and stable connection</li>\r\n</ul>\r\nIn our test of VPN providers, ExpressVPN is the winner. This is a service that has everything, and you can always rely on it for optimal performance. They have a lot of servers in 94 countries. The number of servers makes the speed very high. A VPN normally causes some loss of speed, but with ExpressVPN this is not a problem; the difference is virtually not noticeable.\r\n\r\nSafety is also something that should be emphasized when choosing a VPN. ExpressVPN is based in the British Virgin Islands, so they are not legally required to store any of their users\' information. In addition, they have double encryption, and an <em>kill switch</em> in case the connection is dropped.\r\n\r\nThe price varies according to the subscription period. One month costs about € 9, but this price is halved if you choose the longest subscription of 15 months. You can also try the risk-free service for 30 days to get a full refund if you are not satisfied.\r\n<div>\r\n<div><strong>NordVPN</strong></div>\r\n</div>\r\n<ul>\r\n <li>Surf anonymously in China</li>\r\n <li>High speed</li>\r\n <li>Servers in 60 countries</li>\r\n</ul>\r\nJust after ExpressVPN comes NordVPN. This is also a very good service that scores high on all points. They offer servers in more than 60 countries. Also, you won\'t notice any speed drop with NordVPN because they have many and fast servers. This allows you to stream content in HD and browse the web normally.\r\n\r\nLike ExpressVPN, NordVPN has double encryption. They use <em>TOR over VPN</em>, which provides additional protection. In addition, they are based in Panama, so they don\'t store any information either. In addition, they also offer protection against DNS and IP leaks, as well as an <em>kill switch</em>.\r\n\r\nNordVPN offers a membership for up to 3 years, which costs only € 3 per month. If you want the service for a month, it\'s about € 9, but a 30-day money-back guarantee applies.\r\n\r\nhttps://www.youtube.com/watch?v=WCyF3qMtycE','Why are there restrictions for internetting in China? And how can a VPN help you out with this very issue?','','inherit','closed','closed','','68-revision-v1','','','2021-06-14 09:52:13','2021-06-14 09:52:13','',68,'http://supportfazilsay.com/?p=70',0,'revision','',0),(71,1,'2021-06-14 20:23:55','2021-06-14 20:23:55','','hakcnak21','','inherit','closed','closed','','hakcnak21','','','2021-06-14 20:23:55','2021-06-14 20:23:55','',68,'http://supportfazilsay.com/wp-content/uploads/2021/06/hakcnak21.jpg',0,'attachment','image/jpeg',0),(72,1,'2021-06-14 20:24:01','2021-06-14 20:24:01','China is a totalitarian government that wants complete control over its people. They have set up a protection called “the Chinese firewall”. It is a criminal offense for Chinese residents to use social media and stream content that is illegal in China. This is basically because the authorities are afraid that there will be propaganda that goes against government policy. This can be very strange for tourists, as most people are used to sharing photos’s on social media like Instagram and talking to friends on Messenger or check the <a href=\"https://www.globalwatchonline.com/it/vpn/reviews/nord-vpn/\">nordvpn opinioni @ Globalwatchonline.it</a>\r\n<h2><strong>Is it illegal to use VPN in China as a tourist?</strong></h2>\r\nVPN is not immediately illegal in China, but there are some rules that apply. This means that only a few VPN providers are allowed in the country. These providers have special agreements with the Chinese authorities, and these are also filed. So when you go to China you don\'t have to be afraid of breaking the law.\r\n<h2><strong>Best VPN for China</strong></h2>\r\nThere are extremely many VPN services, but not all of them work in China. Below, we list a few VPN’s that we think work very well in China.\r\n<h3><strong>ExpressVPN </strong></h3>\r\n<ul>\r\n <li>Overcome the “Great Wall of China”</li>\r\n <li>Fast and stable connection</li>\r\n</ul>\r\nIn our test of VPN providers, ExpressVPN is the winner. This is a service that has everything, and you can always rely on it for optimal performance. They have a lot of servers in 94 countries. The number of servers makes the speed very high. A VPN normally causes some loss of speed, but with ExpressVPN this is not a problem; the difference is virtually not noticeable.\r\n\r\nSafety is also something that should be emphasized when choosing a VPN. ExpressVPN is based in the British Virgin Islands, so they are not legally required to store any of their users\' information. In addition, they have double encryption, and an <em>kill switch</em> in case the connection is dropped with the <a href=\"https://www.globalwatchonline.com/fr/vpn/guide/meilleur-vpn/\">meilleur VPN en 2021.</a>\r\n\r\nThe price varies according to the subscription period. One month costs about € 9, but this price is halved if you choose the longest subscription of 15 months. You can also try the risk-free service for 30 days to get a full refund if you are not satisfied.\r\n<div>\r\n<div><strong>NordVPN</strong></div>\r\n</div>\r\n<ul>\r\n <li>Surf anonymously in China</li>\r\n <li>High speed</li>\r\n <li>Servers in 60 countries</li>\r\n</ul>\r\nJust after ExpressVPN comes NordVPN. This is also a very good service that scores high on all points. They offer servers in more than 60 countries. Also, you won\'t notice any speed drop with NordVPN because they have many and fast servers. This allows you to stream content in HD and browse the web normally.\r\n\r\nLike ExpressVPN, NordVPN has double encryption. They use <em>TOR over VPN</em>, which provides additional protection. In addition, they are based in Panama, so they don\'t store any information either. In addition, they also offer protection against DNS and IP leaks, as well as an <em>kill switch</em>.\r\n\r\nNordVPN offers a membership for up to 3 years, which costs only € 3 per month. If you want the service for a month, it\'s about € 9, but a 30-day money-back guarantee applies.\r\n\r\nhttps://www.youtube.com/watch?v=WCyF3qMtycE','Why are there restrictions for internetting in China? And how can a VPN help you out with this very issue?','','inherit','closed','closed','','68-revision-v1','','','2021-06-14 20:24:01','2021-06-14 20:24:01','',68,'http://supportfazilsay.com/?p=72',0,'revision','',0),(74,1,'2021-08-23 12:47:55','2021-08-23 12:47:55','<p>Bitcoin price has realized the easy money and is now facing a myriad of resistance levels. Ethereum is pricing the upper trendline of the bearish triangle, but is flashing a bearish momentum divergence on the intra-day charts.</p>\r\n<h2>XRP price hits inflection point after rallying 42% over nine trading days.</h2>\r\n<p>Bitcoin price has spoiled investors during a relentless rebound from its July low. Still, it\'s time for some corrective process to release the price compression generated during the rebound. Ethereum price registers a rare nine-day rebound, confirming a solid low for the smart contract giant. XRP price is double bottoming, increasing the probability of a $1.00 test.</p>\r\n<p>https://youtu.be/91OhJ5WXgMM</p>\r\n<h2>Bitcoin price favors a correction over time, not the price</h2>\r\n<p>Bitcoin price closed yesterday for a rare nine consecutive days and a gain of more than 34% on the streak, marking the best nine-day gain since February and, more importantly, a final break from the corrective price action that dominated BTC. since the March crash. In addition, the recovery lifted the daily Relative Strength Index (RSI) to its first overbought value since its March high.</p>\r\n<p>The resumption of dominance in the cryptocurrency complex began with a daily close above the upper trendline of a falling wedge pattern on July 22. The pattern indicated that a bullish resolution of Bitcoin\'s price trend was close as downward momentum continued to decline. The result was a bullish engulf week on the bar charts last week, laying the groundwork for this week\'s catapult higher. <a href=\"https://www.bitcoinexchangenederland.nl/shiba-inu/\">SHIB</a> price has risen.</p>\r\n<p>The pace and magnitude of the move pushed Bitcoin price into a quadfecta of resistance that will dictate BTC\'s intentions in the coming weeks. The first point of resistance is the Ichimoku Cloud. It has impacted prices for the past three days. Beyond the Ichimoku Cloud is the June 15 high at $41,322, the 38.2% Fibonacci retracement from the April-June correction at $42,589, and the February 28 low of $43,016. Together, these levels represent a significant barrier to extending the rally in the coming days, especially given the overbought condition on the daily RSI.</p>\r\n<h2>Bitcoin price</h2>\r\n<p>An ideal scenario for Bitcoin price is a correction over time, meaning BTC moves sideways with a slight downward drift, releasing the oversold condition. It would be a sign of a strong bid and an unwillingness to make a profit. A price correction kicks off with the June 29 high of $36,675, providing credible support. If the level fails to contain selling pressure, the rising 50-day Simple Moving Average (SMA) at $34,711 should successfully withstand any additional weakness, yielding a nearly 11% drop from its current price . Any weakness below the tactically important 50-day SMA would require a reconsideration of the bullish narrative. Here, FXStreet analysts are evaluating where BTC could be headed as it appears to be headed for a pre-capitulation rebound.</p>\r\n<h2>Ethereum price reaches a safe position</h2>\r\n<p>Ethereum price has recorded nine consecutive days with a total gain of 33% since the July 20 low, representing the best nine-day return since the May high, lifting ETH to the top trendline of the descending triangle pattern that forces price action since the March collapse.</p>\r\n<p>Unlike Bitcoin price, ETH is not overbought on the daily RSI, suggesting that Ethereum price could extend its rally past the trendline before moving into a correction. However, there is bearish momentum divergence on the six-hour chart, providing the technical impetus for a consolidation at this point. The momentum divergence also corresponds to a rising wedge pattern on the specified time frame. <a href=\"https://www.bitcoinexchangenederland.nl/ripple/\">XRP Ripple</a> price has risen.</p>\r\n<h2>Ethereum price</h2>\r\n<p>Ethereum price is getting a massive support layer, framed by the 2020 rising trendline, the 200-day SMA at $2,132 and the 50-day SMA at $2,140. The range is strengthened by the February high at $2,041, providing a safe position for ETH.</p>\r\n<p>Suppose the Ethereum price does not reach the February bottom. In that case, it raises the chances of a retest of the July low of $1,720 and possibly a collapse of the triangle\'s horizontal support line. A continuation of the rally above the upper trendline of the descending triangle should encounter no resistance until a cluster of highs just above USD 2,900. Here FXStreet\'s analysts are evaluating where ETH could go as it looks poised for higher highs.</p>\r\n<h2>XRP price almost shining again</h2>\r\n<p>The XRP price traveled 42% over the previous nine trading days, pushing Ripple to the convergence of the 200-day SMA with the neckline of a multi-year head-and-shoulders reversal pattern at $0.772. In the process, the International Settlement Token is activated.</p>\r\n','Top 3 Bitcoin, Ethereum, Ripple Price Prediction: Crypto Majors Meet Formidable Resistance, Short Term Upside Limited','','publish','closed','closed','','top-3-bitcoin-ethereum-ripple-price-prediction-crypto-majors-meet-formidable-resistance-short-term-upside-limited','','','2021-09-20 12:50:32','2021-09-20 12:50:32','',0,'http://supportfazilsay.com/?p=74',0,'post','',0),(75,1,'2021-09-20 12:48:10','2021-09-20 12:48:10','','pexels-moose-photos-1037912','','inherit','closed','closed','','pexels-moose-photos-1037912','','','2021-09-20 12:48:10','2021-09-20 12:48:10','',74,'http://supportfazilsay.com/wp-content/uploads/2021/09/pexels-moose-photos-1037912.jpg',0,'attachment','image/jpeg',0),(76,1,'2021-09-20 12:50:32','2021-09-20 12:50:32','<p>Bitcoin price has realized the easy money and is now facing a myriad of resistance levels. Ethereum is pricing the upper trendline of the bearish triangle, but is flashing a bearish momentum divergence on the intra-day charts.</p>\r\n<h2>XRP price hits inflection point after rallying 42% over nine trading days.</h2>\r\n<p>Bitcoin price has spoiled investors during a relentless rebound from its July low. Still, it\'s time for some corrective process to release the price compression generated during the rebound. Ethereum price registers a rare nine-day rebound, confirming a solid low for the smart contract giant. XRP price is double bottoming, increasing the probability of a $1.00 test.</p>\r\n<p>https://youtu.be/91OhJ5WXgMM</p>\r\n<h2>Bitcoin price favors a correction over time, not the price</h2>\r\n<p>Bitcoin price closed yesterday for a rare nine consecutive days and a gain of more than 34% on the streak, marking the best nine-day gain since February and, more importantly, a final break from the corrective price action that dominated BTC. since the March crash. In addition, the recovery lifted the daily Relative Strength Index (RSI) to its first overbought value since its March high.</p>\r\n<p>The resumption of dominance in the cryptocurrency complex began with a daily close above the upper trendline of a falling wedge pattern on July 22. The pattern indicated that a bullish resolution of Bitcoin\'s price trend was close as downward momentum continued to decline. The result was a bullish engulf week on the bar charts last week, laying the groundwork for this week\'s catapult higher. <a href=\"https://www.bitcoinexchangenederland.nl/shiba-inu/\">SHIB</a> price has risen.</p>\r\n<p>The pace and magnitude of the move pushed Bitcoin price into a quadfecta of resistance that will dictate BTC\'s intentions in the coming weeks. The first point of resistance is the Ichimoku Cloud. It has impacted prices for the past three days. Beyond the Ichimoku Cloud is the June 15 high at $41,322, the 38.2% Fibonacci retracement from the April-June correction at $42,589, and the February 28 low of $43,016. Together, these levels represent a significant barrier to extending the rally in the coming days, especially given the overbought condition on the daily RSI.</p>\r\n<h2>Bitcoin price</h2>\r\n<p>An ideal scenario for Bitcoin price is a correction over time, meaning BTC moves sideways with a slight downward drift, releasing the oversold condition. It would be a sign of a strong bid and an unwillingness to make a profit. A price correction kicks off with the June 29 high of $36,675, providing credible support. If the level fails to contain selling pressure, the rising 50-day Simple Moving Average (SMA) at $34,711 should successfully withstand any additional weakness, yielding a nearly 11% drop from its current price . Any weakness below the tactically important 50-day SMA would require a reconsideration of the bullish narrative. Here, FXStreet analysts are evaluating where BTC could be headed as it appears to be headed for a pre-capitulation rebound.</p>\r\n<h2>Ethereum price reaches a safe position</h2>\r\n<p>Ethereum price has recorded nine consecutive days with a total gain of 33% since the July 20 low, representing the best nine-day return since the May high, lifting ETH to the top trendline of the descending triangle pattern that forces price action since the March collapse.</p>\r\n<p>Unlike Bitcoin price, ETH is not overbought on the daily RSI, suggesting that Ethereum price could extend its rally past the trendline before moving into a correction. However, there is bearish momentum divergence on the six-hour chart, providing the technical impetus for a consolidation at this point. The momentum divergence also corresponds to a rising wedge pattern on the specified time frame. <a href=\"https://www.bitcoinexchangenederland.nl/ripple/\">XRP Ripple</a> price has risen.</p>\r\n<h2>Ethereum price</h2>\r\n<p>Ethereum price is getting a massive support layer, framed by the 2020 rising trendline, the 200-day SMA at $2,132 and the 50-day SMA at $2,140. The range is strengthened by the February high at $2,041, providing a safe position for ETH.</p>\r\n<p>Suppose the Ethereum price does not reach the February bottom. In that case, it raises the chances of a retest of the July low of $1,720 and possibly a collapse of the triangle\'s horizontal support line. A continuation of the rally above the upper trendline of the descending triangle should encounter no resistance until a cluster of highs just above USD 2,900. Here FXStreet\'s analysts are evaluating where ETH could go as it looks poised for higher highs.</p>\r\n<h2>XRP price almost shining again</h2>\r\n<p>The XRP price traveled 42% over the previous nine trading days, pushing Ripple to the convergence of the 200-day SMA with the neckline of a multi-year head-and-shoulders reversal pattern at $0.772. In the process, the International Settlement Token is activated.</p>\r\n','Top 3 Bitcoin, Ethereum, Ripple Price Prediction: Crypto Majors Meet Formidable Resistance, Short Term Upside Limited','','inherit','closed','closed','','74-revision-v1','','','2021-09-20 12:50:32','2021-09-20 12:50:32','',74,'http://supportfazilsay.com/?p=76',0,'revision','',0),(77,1,'2021-09-18 12:32:29','2021-09-18 12:32:29','Getting married in Nijmegen? Yes, you want that! In addition to the most beautiful clothing, the rings and a delicious cake, the official part in the town hall cannot be missed. The costs of such a ceremony in Nijmegen have increased in recent years.\r\n\r\nOnline platform ThePerfectWedding investigated the wedding costs in the Netherlands. What seems? The amounts vary from municipality to municipality.\r\n<h2>Getting married in Nijmegen</h2>\r\nGrab your wallet! If you tie the knot in Nijmegen this year, you will pay an average of €368.22. That is 8.3 percent higher than in 2019, when you paid an average of € 340.11. <a href=\"https://moveco.io/\">live crypto rates Moveco.io</a> has enough information. This is the average price you pay for a ceremony at a municipal location, during the day from Monday to Thursday.\r\n\r\nhttps://youtu.be/MuD-Xf4jy24\r\n<h2>Marriage certificate and own babs</h2>\r\nIn addition to the average of €368.22, there are often additional costs. For example, a marriage certificate costs at least € 19.30 and a witness from the municipality € 36.55. Would you like to be married by someone you know? Having your own, already sworn in wedding officiant costs € 145. If the person has not yet been sworn in, it costs € 290. All amounts can be found on the website of the municipality of Nijmegen.\r\n<h2>Free wedding</h2>\r\nFun fact: getting married in the Nijmegen City Shop is completely free on Monday mornings between 09:00 and 09:15. If you want to get married at a slightly more festive moment, you have to pull out your wallet. A wedding ceremony on Friday or Saturday evening costs € 1,105.60. <a href=\"https://folm.io/\">folm.io cryptocurrency</a> has enough information. On Sundays and public holidays you pay € 1,440.20.\r\n<h2>Getting married in another municipality</h2>\r\nThe map shows the costs of getting married in other municipalities. Good to know: these are the average costs for a basic ceremony. The colors indicate whether the prices have increased or decreased compared to 2019.\r\n\r\n ','Yes I do! This costs getting married in Nijmegen','','publish','closed','closed','','yes-i-do-this-costs-getting-married-in-nijmegen','','','2021-09-23 12:36:31','2021-09-23 12:36:31','',0,'http://supportfazilsay.com/?p=77',0,'post','',0),(78,1,'2021-09-23 12:35:14','2021-09-23 12:35:14','','luwadlin-bosman-P_HRPYpFTNA-unsplash','','inherit','closed','closed','','luwadlin-bosman-p_hrpypftna-unsplash','','','2021-09-23 12:35:14','2021-09-23 12:35:14','',77,'http://supportfazilsay.com/wp-content/uploads/2021/09/luwadlin-bosman-P_HRPYpFTNA-unsplash.jpg',0,'attachment','image/jpeg',0),(79,1,'2021-09-23 12:35:38','2021-09-23 12:35:38','Getting married in Nijmegen? Yes, you want that! In addition to the most beautiful clothing, the rings and a delicious cake, the official part in the town hall cannot be missed. The costs of such a ceremony in Nijmegen have increased in recent years.\r\n\r\nOnline platform ThePerfectWedding investigated the wedding costs in the Netherlands. What seems? The amounts vary from municipality to municipality.\r\n<h2>Getting married in Nijmegen</h2>\r\nGrab your wallet! If you tie the knot in Nijmegen this year, you will pay an average of €368.22. That is 8.3 percent higher than in 2019, when you paid an average of € 340.11. <a href=\"https://moveco.io/\">live crypto rates Moveco.io</a> has enough information. This is the average price you pay for a ceremony at a municipal location, during the day from Monday to Thursday.\r\n\r\nhttps://youtu.be/MuD-Xf4jy24\r\n<h2>Marriage certificate and own babs</h2>\r\nIn addition to the average of €368.22, there are often additional costs. For example, a marriage certificate costs at least € 19.30 and a witness from the municipality € 36.55. Would you like to be married by someone you know? Having your own, already sworn in wedding officiant costs € 145. If the person has not yet been sworn in, it costs € 290. All amounts can be found on the website of the municipality of Nijmegen.\r\n<h2>Free wedding</h2>\r\nFun fact: getting married in the Nijmegen City Shop is completely free on Monday mornings between 09:00 and 09:15. If you want to get married at a slightly more festive moment, you have to pull out your wallet. A wedding ceremony on Friday or Saturday evening costs € 1,105.60. <a href=\"https://folm.io/\">folm.io cryptocurrency</a> has enough information. On Sundays and public holidays you pay € 1,440.20.\r\n<h2>Getting married in another municipality</h2>\r\nThe map shows the costs of getting married in other municipalities. Good to know: these are the average costs for a basic ceremony. The colors indicate whether the prices have increased or decreased compared to 2019.\r\n\r\n ','Yes I do! This costs getting married in Nijmegen','','inherit','closed','closed','','77-revision-v1','','','2021-09-23 12:35:38','2021-09-23 12:35:38','',77,'http://supportfazilsay.com/?p=79',0,'revision','',0),(80,0,'2021-10-05 00:46:59','2021-10-05 00:46:59','<iframe title=\"THE CAUSE OF THE BITCOIN CRASH\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/MuD-Xf4jy24?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','3d368bdd6fe6b8fe4d18863c2e336071','','','2021-10-05 00:46:59','2021-10-05 00:46:59','',0,'http://supportfazilsay.com/3d368bdd6fe6b8fe4d18863c2e336071/',0,'oembed_cache','',0),(81,0,'2021-10-26 16:09:43','2021-10-26 16:09:43','<iframe title=\"HUGE ETH ETHEREUM BREAKOUT SOON\" width=\"640\" height=\"480\" src=\"https://www.youtube.com/embed/91OhJ5WXgMM?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','390d51e447ff08ca9a79042da62ab593','','','2021-10-26 16:09:43','2021-10-26 16:09:43','',0,'http://supportfazilsay.com/390d51e447ff08ca9a79042da62ab593/',0,'oembed_cache','',0),(82,0,'2021-10-26 16:09:45','2021-10-26 16:09:45','<iframe title=\"What is a VPN? Experts Answer!\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/WCyF3qMtycE?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','5d8f5bb74c4bbb4362e66b0ec6d448c2','','','2021-10-26 16:09:45','2021-10-26 16:09:45','',0,'http://supportfazilsay.com/5d8f5bb74c4bbb4362e66b0ec6d448c2/',0,'oembed_cache','',0),(83,0,'2021-10-26 16:09:45','2021-10-26 16:09:45','<iframe title=\"What is a VPN? Experts Answer!\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/WCyF3qMtycE?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','5d8f5bb74c4bbb4362e66b0ec6d448c2-2','','','2021-10-26 16:09:45','2021-10-26 16:09:45','',0,'http://supportfazilsay.com/5d8f5bb74c4bbb4362e66b0ec6d448c2-2/',0,'oembed_cache','',0),(85,1,'2021-12-28 11:52:34','2021-12-28 11:52:34','Jiang Zhuoer expects the current bull run to end between September 2021 and June 2022. Zhuoer is the CEO of one of the largest Chinese mining pools called BTC.TOP.\r\n<h2>From bull to bear</h2>\r\nHe shares several reasons why he thinks the bitcoin bull market will end in the said period and begin the next bear cycle.\r\n\r\nThe bitcoin mining pool manager spoke to WuBlockchain about why the market could switch from bull to bear as early as September 2021 or even mid-2022, depending on a number of factors.\r\n\r\nThe term bull market is used to describe a longer period of growth. Growth in the value of a stock, or in our case of the cryptocurrency market. Bear market is quite the opposite. The meaning of a bear market is when the price or value of bitcoin has been declining for an extended period of time.\r\n\r\nhttps://youtu.be/iVvVZLKqtKU\r\n<h2>Vaccine has an effect</h2>\r\nOne reason for his prediction is an economic recovery based on the rollout of the Covid vaccine. As the various economies become somewhat normal, Jiang expects interest in investing in cryptocurrency to wane.\r\n<h2>Large companies and institutions</h2>\r\nIn addition, he says that momentum and optimism in the market must continue to be fed by public statements from large companies. Investments like Tesla\'s are necessary to keep people interested.\r\n\r\nIn addition, Jiang mentions that continuing to buy by institutions will keep the bull market alive longer. With this he refers to Grayscale, whose assets under management continue to grow. There are also more and more opportunities for institutions to invest in bitcoin. <a href=\"https://currencyconverters.org/nl/cryptocurrencies\'\">Price prediction Cryptocurrency Netherlands</a> is popular.\r\n<h2>Shortage of microchips good for bitcoin</h2>\r\nAt the moment, there is a shortage of microchips in the world for several reasons. As a result, the prices of graphics cards, but also of mining devices, have increased significantly. According to Zhuoer, that is good for the price of bitcoin. This ensures that miners are less inclined to sell their bitcoins.\r\n\r\n\"There is definitely a shortage of equipment right now, because since the coronavirus epidemic, the global supply chain has been disrupted and is now gradually recovering. But the demand for chips has skyrocketed, so now all industries are short of chips, be it bitcoin mining or other industries. \"\r\n\r\nThe shortage of mining devices can be seen in bitcoin\'s hash rate. Since halving in May 2020, bitcoin\'s hash rate has increased from about 92 million terahashes per second to its current value of 166 million, an increase of 80%. Bitcoin\'s price, on the other hand, rose from $ 9,000 to over $ 60,000, a gain of over 600%.\r\n<h2>Correlation of computing power and bitcoin price</h2>\r\nBitcoin\'s hash rate has a relatively simple correlation to its price. Barring new technological developments, price increases should be closely mirrored by increases in hash rate. Still, the hash rate has remained relatively stable in recent months.\r\n\r\nThis means that today\'s miners are seeing much higher revenues for individual devices. Below is a graph of the hash price. Hash price is the revenue generated by miners based on computing power supplied. <a href=\"https://currencyconverters.org/pt/cryptocurrencies\">Portugal crypto predictions</a> is popular.\r\n\r\nThe price of supplied computing power has been declining for years. This is mainly because machines become more efficient. Laptops or graphics cards of game computers are no longer mined (if you still do, respect!), The transition to ASIC is clearly visible below. Since the start of this bull market at the end of 2020, the costs of supplying computing power to the bitcoin network have increased.','Prediction: Bitcoin bull market will end in September 2021 at the earliest','','publish','closed','closed','','prediction-bitcoin-bull-market-will-end-in-september-2021-at-the-earliest','','','2021-12-08 13:18:10','2021-12-08 13:18:10','',0,'http://supportfazilsay.com/?p=85',0,'post','',0),(86,1,'2021-12-08 13:17:56','2021-12-08 13:17:56','','pexels-olya-kobruseva-8358136','','inherit','closed','closed','','pexels-olya-kobruseva-8358136','','','2021-12-08 13:17:56','2021-12-08 13:17:56','',85,'http://supportfazilsay.com/wp-content/uploads/2021/12/pexels-olya-kobruseva-8358136.jpg',0,'attachment','image/jpeg',0),(87,1,'2021-12-08 13:18:10','2021-12-08 13:18:10','Jiang Zhuoer expects the current bull run to end between September 2021 and June 2022. Zhuoer is the CEO of one of the largest Chinese mining pools called BTC.TOP.\r\n<h2>From bull to bear</h2>\r\nHe shares several reasons why he thinks the bitcoin bull market will end in the said period and begin the next bear cycle.\r\n\r\nThe bitcoin mining pool manager spoke to WuBlockchain about why the market could switch from bull to bear as early as September 2021 or even mid-2022, depending on a number of factors.\r\n\r\nThe term bull market is used to describe a longer period of growth. Growth in the value of a stock, or in our case of the cryptocurrency market. Bear market is quite the opposite. The meaning of a bear market is when the price or value of bitcoin has been declining for an extended period of time.\r\n\r\nhttps://youtu.be/iVvVZLKqtKU\r\n<h2>Vaccine has an effect</h2>\r\nOne reason for his prediction is an economic recovery based on the rollout of the Covid vaccine. As the various economies become somewhat normal, Jiang expects interest in investing in cryptocurrency to wane.\r\n<h2>Large companies and institutions</h2>\r\nIn addition, he says that momentum and optimism in the market must continue to be fed by public statements from large companies. Investments like Tesla\'s are necessary to keep people interested.\r\n\r\nIn addition, Jiang mentions that continuing to buy by institutions will keep the bull market alive longer. With this he refers to Grayscale, whose assets under management continue to grow. There are also more and more opportunities for institutions to invest in bitcoin. <a href=\"https://currencyconverters.org/nl/cryptocurrencies\'\">Price prediction Cryptocurrency Netherlands</a> is popular.\r\n<h2>Shortage of microchips good for bitcoin</h2>\r\nAt the moment, there is a shortage of microchips in the world for several reasons. As a result, the prices of graphics cards, but also of mining devices, have increased significantly. According to Zhuoer, that is good for the price of bitcoin. This ensures that miners are less inclined to sell their bitcoins.\r\n\r\n\"There is definitely a shortage of equipment right now, because since the coronavirus epidemic, the global supply chain has been disrupted and is now gradually recovering. But the demand for chips has skyrocketed, so now all industries are short of chips, be it bitcoin mining or other industries. \"\r\n\r\nThe shortage of mining devices can be seen in bitcoin\'s hash rate. Since halving in May 2020, bitcoin\'s hash rate has increased from about 92 million terahashes per second to its current value of 166 million, an increase of 80%. Bitcoin\'s price, on the other hand, rose from $ 9,000 to over $ 60,000, a gain of over 600%.\r\n<h2>Correlation of computing power and bitcoin price</h2>\r\nBitcoin\'s hash rate has a relatively simple correlation to its price. Barring new technological developments, price increases should be closely mirrored by increases in hash rate. Still, the hash rate has remained relatively stable in recent months.\r\n\r\nThis means that today\'s miners are seeing much higher revenues for individual devices. Below is a graph of the hash price. Hash price is the revenue generated by miners based on computing power supplied. <a href=\"https://currencyconverters.org/pt/cryptocurrencies\">Portugal crypto predictions</a> is popular.\r\n\r\nThe price of supplied computing power has been declining for years. This is mainly because machines become more efficient. Laptops or graphics cards of game computers are no longer mined (if you still do, respect!), The transition to ASIC is clearly visible below. Since the start of this bull market at the end of 2020, the costs of supplying computing power to the bitcoin network have increased.','Prediction: Bitcoin bull market will end in September 2021 at the earliest','','inherit','closed','closed','','85-revision-v1','','','2021-12-08 13:18:10','2021-12-08 13:18:10','',85,'http://supportfazilsay.com/?p=87',0,'revision','',0),(88,0,'2022-06-08 10:28:55','2022-06-08 10:28:55','{{unknown}}','','','publish','closed','closed','','0196e25346da9c20d8523aa05e20794f','','','2022-06-08 10:28:55','2022-06-08 10:28:55','',0,'https://supportfazilsay.com/0196e25346da9c20d8523aa05e20794f/',0,'oembed_cache','',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 (19,3,0),(31,4,0),(32,4,0),(33,4,0),(34,4,0),(35,4,0),(62,5,0),(68,6,0),(74,7,0),(77,8,0),(85,7,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,0),(3,3,'category','',0,1),(4,4,'nav_menu','',0,5),(5,5,'category','',0,1),(6,6,'category','',0,1),(7,7,'category','',0,2),(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,'Blogging','blogging',0),(3,'Health','health',0),(4,'Main Menu','main-menu',0),(5,'Credit - Fazilsay','credit-fazilsay',0),(6,'VPN Service','vpn-service',0),(7,'Cryptocurrencies','cryptocurrencies',0),(8,'Weddings','weddings',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=26 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','administrator'),(2,1,'first_name','Justin'),(3,1,'last_name','Peterson'),(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','text_widget_custom_html'),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"ce4d6857958ec7d10c7e1a73f8cbc08041136ee115d245be9a0613e63b12ce8b\";a:4:{s:10:\"expiration\";i:1677160524;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36\";s:5:\"login\";i:1676987724;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','84'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"77.168.162.0\";}'),(20,1,'wp_user-settings','editor=tinymce&libraryContent=browse'),(21,1,'wp_user-settings-time','1632400534'),(22,1,'_yoast_wpseo_profile_updated','1598247397'),(23,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(24,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(25,1,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:18;s:9:\"\0*\0reason\";s:23:\"home_url_option_changed\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"1\";s:10:\"user_login\";s:13:\"administrator\";s:9:\"user_pass\";s:34:\"$P$Benzelo.8liHQHDnSS4cxiuM/iXR/B1\";s:13:\"user_nicename\";s:13:\"administrator\";s:10:\"user_email\";s:24:\"[email protected]\";s:8:\"user_url\";s:26:\"http://supportfazilsay.com\";s:15:\"user_registered\";s:19:\"2020-06-19 18:37:02\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"Justin Peterson\";}s:2:\"ID\";i:1;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:63:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.80000000000000004;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_users` (
`ID` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_url` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_status` int NOT NULL DEFAULT '0',
`display_name` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'administrator','$P$Benzelo.8liHQHDnSS4cxiuM/iXR/B1','administrator','[email protected]','http://supportfazilsay.com','2020-06-19 18:37:02','',0,'Justin Peterson');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wpil_keyword_select_links`
--
DROP TABLE IF EXISTS `wp_wpil_keyword_select_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpil_keyword_select_links` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`keyword_id` int unsigned NOT NULL,
`post_id` int unsigned NOT NULL,
`post_type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`sentence_text` text COLLATE utf8mb4_unicode_ci,
`case_keyword` text COLLATE utf8mb4_unicode_ci,
`meta_data` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`),
KEY `keyword_id` (`keyword_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wpil_keyword_select_links`
--
LOCK TABLES `wp_wpil_keyword_select_links` WRITE;
/*!40000 ALTER TABLE `wp_wpil_keyword_select_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wpil_keyword_select_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wpil_report_links`
--
DROP TABLE IF EXISTS `wp_wpil_report_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpil_report_links` (
`link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint unsigned NOT NULL,
`clean_url` text COLLATE utf8mb4_unicode_ci,
`raw_url` text COLLATE utf8mb4_unicode_ci,
`host` text COLLATE utf8mb4_unicode_ci,
`anchor` text COLLATE utf8mb4_unicode_ci,
`internal` tinyint(1) DEFAULT '0',
`has_links` tinyint(1) NOT NULL DEFAULT '0',
`post_type` text COLLATE utf8mb4_unicode_ci,
`location` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`link_id`),
KEY `post_id` (`post_id`),
KEY `clean_url` (`clean_url`(500))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wpil_report_links`
--
LOCK TABLES `wp_wpil_report_links` WRITE;
/*!40000 ALTER TABLE `wp_wpil_report_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wpil_report_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_yoast_indexable`
--
DROP TABLE IF EXISTS `wp_yoast_indexable`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_yoast_indexable` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`permalink` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`permalink_hash` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`object_id` bigint DEFAULT NULL,
`object_type` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`object_sub_type` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`author_id` bigint DEFAULT NULL,
`post_parent` bigint DEFAULT NULL,
`title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`breadcrumb_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`post_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_public` tinyint(1) DEFAULT NULL,
`is_protected` tinyint(1) DEFAULT '0',
`has_public_posts` tinyint(1) DEFAULT NULL,
`number_of_pages` int unsigned DEFAULT NULL,
`canonical` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`primary_focus_keyword` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`primary_focus_keyword_score` int DEFAULT NULL,
`readability_score` int DEFAULT NULL,
`is_cornerstone` tinyint(1) DEFAULT '0',
`is_robots_noindex` tinyint(1) DEFAULT '0',
`is_robots_nofollow` tinyint(1) DEFAULT '0',
`is_robots_noarchive` tinyint(1) DEFAULT '0',
`is_robots_noimageindex` tinyint(1) DEFAULT '0',
`is_robots_nosnippet` tinyint(1) DEFAULT '0',
`twitter_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`twitter_image` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`twitter_description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`twitter_image_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`twitter_image_source` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`open_graph_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`open_graph_description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`open_graph_image` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`open_graph_image_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`open_graph_image_source` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`open_graph_image_meta` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`link_count` int DEFAULT NULL,
`incoming_link_count` int DEFAULT NULL,
`prominent_words_version` int unsigned DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`blog_id` bigint NOT NULL DEFAULT '1',
`language` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`region` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`schema_page_type` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`schema_article_type` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`has_ancestors` tinyint(1) DEFAULT '0',
`estimated_reading_time_minutes` int DEFAULT NULL,
`version` int DEFAULT '1',
`object_last_modified` datetime DEFAULT NULL,
`object_published_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
KEY `object_id_and_type` (`object_id`,`object_type`),
KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`),
KEY `published_sitemap_index` (`object_published_at`,`is_robots_noindex`,`object_type`,`object_sub_type`)
) ENGINE=InnoDB AUTO_INCREMENT=76 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_yoast_indexable`
--
LOCK TABLES `wp_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable` VALUES (1,'https://supportfazilsay.com/','28:b62d88f2fb3147d63a2ab5fdd0ec8eea',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','Keep moving','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'%%sitename%%','','','0',NULL,NULL,NULL,NULL,NULL,'2020-06-19 18:37:14','2022-06-07 04:41:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-12-08 13:18:10','2020-08-24 05:14:17'),(2,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Page not found %%sep%% %%sitename%%',NULL,'Error 404: Page not found',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-20 12:08:50','2023-02-21 13:55:31',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(3,'https://supportfazilsay.com/author/administrator/','49:ea23cb566d73c119be0cc54fd8309837',1,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/f069f0343eb260df0e647b4aeeaa8ed7?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/f069f0343eb260df0e647b4aeeaa8ed7?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2020-06-21 13:36:16','2022-06-07 04:41:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-12-08 13:18:10','2020-08-22 11:07:08'),(7,NULL,NULL,NULL,'system-page','search-result',NULL,NULL,'You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-25 17:57:30','2022-06-09 21:01:51',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(10,'https://supportfazilsay.com/category/uncategorized/','51:861ff08f8e1d7da187ef2e43014e0ff8',1,'term','category',NULL,NULL,NULL,NULL,'Uncategorized',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-08-22 10:40:15','2023-02-21 13:55:31',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL),(11,'https://supportfazilsay.com/category/blogging/','46:5eb31c14d9d9b7130bb7771fb0eb548c',2,'term','category',NULL,NULL,NULL,NULL,'Blogging',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-08-22 10:40:15','2023-02-21 13:55:31',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL),(12,NULL,NULL,NULL,'date-archive',NULL,NULL,NULL,'%%date%% %%page%% %%sep%% %%sitename%%','',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-22 10:40:16','2022-07-04 01:54:55',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(13,'https://supportfazilsay.com/welcome/','36:a0897d5d97579d9a5595857ce72bb87b',12,'post','page',1,0,NULL,NULL,'Welcome','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-22 11:03:47','2022-06-07 06:46:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-22 11:07:08','2020-08-22 11:07:08'),(14,'https://supportfazilsay.com/contact-us/','39:73b318bdd2c4d1702c2abac70be9cfd1',14,'post','page',1,0,NULL,NULL,'Contact Us','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-22 11:11:05','2022-06-07 04:41:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-22 12:18:25','2020-08-22 11:14:08'),(15,'https://supportfazilsay.com/privacy-policy/','43:486c5f3e9c608777843e9f3043ed8d2f',17,'post','page',1,0,NULL,NULL,'Privacy Policy','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-22 12:20:04','2022-06-07 06:40:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-22 12:20:04','2020-08-22 12:20:04'),(16,'https://supportfazilsay.com/terms-and-conditions/','49:63a6ebf9a07de35dd78454da3330424e',18,'post','page',1,0,NULL,NULL,'Terms and Conditions','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-22 12:20:45','2022-06-07 06:46:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-22 12:20:45','2020-08-22 12:20:45'),(17,'https://supportfazilsay.com/healthy-snacks-for-healthy-joints/','62:6b77514ed13297b395b709aa482e7837',19,'post','post',1,0,NULL,NULL,'Healthy Snacks For Healthy Joints','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://supportfazilsay.com/wp-content/uploads/2020/08/healthys.jpg',NULL,'20','featured-image',NULL,NULL,'https://supportfazilsay.com/wp-content/uploads/2020/08/healthys.jpg','20','featured-image','{\"width\":778,\"height\":586,\"url\":\"https://supportfazilsay.com/wp-content/uploads/2020/08/healthys.jpg\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2020/08/healthys.jpg\",\"size\":\"full\",\"id\":20,\"alt\":\"\",\"pixels\":455908,\"type\":\"image/jpeg\"}',0,0,NULL,'2020-08-24 04:47:46','2022-06-07 06:46:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-09 22:38:35','2020-08-24 05:14:17'),(18,'https://supportfazilsay.com/category/health/','44:e259c7fcf31ef279addffdfa173c5ebe',3,'term','category',NULL,NULL,NULL,NULL,'Health',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-08-24 04:58:41','2022-06-08 10:25:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-09 22:38:35','2020-08-24 05:14:17'),(19,'http://supportfazilsay.com/wp-content/uploads/2020/08/healthys.jpg','66:b324e71060325af131fc967299f204ef',20,'post','attachment',1,19,NULL,NULL,'healthys','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/healthys.jpg',NULL,'20','attachment-image',NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/healthys.jpg','20','attachment-image','{\"width\":778,\"height\":586,\"url\":\"http://supportfazilsay.com/wp-content/uploads/2020/08/healthys.jpg\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2020/08/healthys.jpg\",\"size\":\"full\",\"id\":20,\"alt\":\"\",\"pixels\":455908,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2020-08-24 05:11:42','2023-02-21 13:55:31',1,NULL,NULL,NULL,NULL,1,NULL,2,'2020-08-24 05:11:42','2020-08-24 05:11:42'),(22,'http://supportfazilsay.com/wp-content/uploads/2020/08/healthy-snacks-for-weight-loss-1200x628-facebook.jpg','106:be4954bd0b3fe3eabc6a24379e0dd999',24,'post','attachment',1,0,NULL,NULL,'healthy-snacks-for-weight-loss-1200×628-facebook','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/healthy-snacks-for-weight-loss-1200x628-facebook.jpg',NULL,'24','attachment-image',NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/healthy-snacks-for-weight-loss-1200x628-facebook.jpg','24','attachment-image','{\"width\":1200,\"height\":628,\"url\":\"http://supportfazilsay.com/wp-content/uploads/2020/08/healthy-snacks-for-weight-loss-1200x628-facebook.jpg\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2020/08/healthy-snacks-for-weight-loss-1200x628-facebook.jpg\",\"size\":\"full\",\"id\":24,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2020-08-24 05:52:50','2023-02-21 13:55:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-24 05:52:50','2020-08-24 05:52:50'),(25,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-download.png','74:83fdf0c1cbbccdfb4a524784d28a45d2',27,'post','attachment',1,0,NULL,NULL,'cropped-download.png','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-download.png',NULL,'27','attachment-image',NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-download.png','27','attachment-image','{\"width\":512,\"height\":512,\"url\":\"http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-download.png\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2020/08/cropped-download.png\",\"size\":\"full\",\"id\":27,\"alt\":\"\",\"pixels\":262144,\"type\":\"image/png\"}',NULL,NULL,NULL,'2020-08-24 05:54:31','2023-02-21 13:55:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-24 05:54:31','2020-08-24 05:54:31'),(27,'http://supportfazilsay.com/wp-content/uploads/2020/08/images.png','64:dcd932f70120b12ca3a857c1379f8adc',29,'post','attachment',1,0,NULL,NULL,'images','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/images.png',NULL,'29','attachment-image',NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/images.png','29','attachment-image','{\"width\":242,\"height\":208,\"url\":\"http://supportfazilsay.com/wp-content/uploads/2020/08/images.png\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2020/08/images.png\",\"size\":\"full\",\"id\":29,\"alt\":\"\",\"pixels\":50336,\"type\":\"image/png\"}',NULL,NULL,NULL,'2020-08-24 06:03:19','2023-02-21 13:55:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-24 06:03:19','2020-08-24 06:03:19'),(29,NULL,NULL,31,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-24 06:05:12','2022-06-07 04:34:08',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(30,NULL,NULL,32,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-24 06:05:18','2022-06-07 04:34:08',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(31,NULL,NULL,33,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-24 06:05:23','2022-06-07 04:34:08',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(32,NULL,NULL,34,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-24 06:05:43','2022-06-07 04:34:08',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(33,NULL,NULL,35,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-24 06:05:45','2022-06-07 04:34:08',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(35,NULL,NULL,38,'post','custom_css',1,0,NULL,NULL,'gloriafood-restaurant','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-24 06:13:18','2022-06-07 04:34:08',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(37,'http://supportfazilsay.com/wp-content/uploads/2020/08/aeb9058f44dd1f4a35349ef9f3458b8a.jpg','90:c7b8b5cae6872ad7a12d322b711c8661',40,'post','attachment',1,0,NULL,NULL,'aeb9058f44dd1f4a35349ef9f3458b8a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/aeb9058f44dd1f4a35349ef9f3458b8a.jpg',NULL,'40','attachment-image',NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/aeb9058f44dd1f4a35349ef9f3458b8a.jpg','40','attachment-image','{\"width\":300,\"height\":250,\"url\":\"http://supportfazilsay.com/wp-content/uploads/2020/08/aeb9058f44dd1f4a35349ef9f3458b8a.jpg\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2020/08/aeb9058f44dd1f4a35349ef9f3458b8a.jpg\",\"size\":\"full\",\"id\":40,\"alt\":\"\",\"pixels\":75000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2020-08-24 06:15:40','2023-02-21 13:55:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-24 06:15:40','2020-08-24 06:15:40'),(38,'http://supportfazilsay.com/wp-content/uploads/2020/08/new_years_resolutions-e1598249801204.jpg','94:fcef26614faec240c2a796a9aeb7dbea',41,'post','attachment',1,0,NULL,NULL,'Healthy food is healthy life. Handsome young man holding fresh yellow pepper and smiling while standing in the kitchen','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/new_years_resolutions-e1598249801204.jpg',NULL,'41','attachment-image',NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/new_years_resolutions-e1598249801204.jpg','41','attachment-image','{\"width\":582,\"height\":488,\"url\":\"http://supportfazilsay.com/wp-content/uploads/2020/08/new_years_resolutions-e1598249801204.jpg\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2020/08/new_years_resolutions-e1598249801204.jpg\",\"size\":\"full\",\"id\":41,\"alt\":\"\",\"pixels\":284016,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2020-08-24 06:15:49','2023-02-21 13:55:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-24 06:16:47','2020-08-24 06:15:49'),(45,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-e1598437169576.png','85:6fd2d7bbbdf57335d6a3942d1f11ea4d',49,'post','attachment',1,0,NULL,NULL,'cropped-logo-e1598437169576.png','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-e1598437169576.png',NULL,'49','attachment-image',NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-e1598437169576.png','49','attachment-image','{\"width\":300,\"height\":100,\"url\":\"http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-e1598437169576.png\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-e1598437169576.png\",\"size\":\"full\",\"id\":49,\"alt\":\"\",\"pixels\":30000,\"type\":\"image/png\"}',NULL,NULL,NULL,'2020-08-26 10:21:24','2023-02-21 13:55:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-26 10:21:24','2020-08-26 10:21:24'),(47,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-1.png','72:b47be0a785c988ce6ea25495fbc4d130',51,'post','attachment',1,0,NULL,NULL,'cropped-logo-1.png','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-1.png',NULL,'51','attachment-image',NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-1.png','51','attachment-image','{\"width\":300,\"height\":100,\"url\":\"http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-1.png\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-1.png\",\"size\":\"full\",\"id\":51,\"alt\":\"\",\"pixels\":30000,\"type\":\"image/png\"}',NULL,NULL,NULL,'2020-08-26 10:22:17','2023-02-21 13:55:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-26 10:22:17','2020-08-26 10:22:17'),(51,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-cover.png','71:4b045a9f712fca1b1d2dcf2a1835f5f9',55,'post','attachment',1,0,NULL,NULL,'cropped-cover.png','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-cover.png',NULL,'55','attachment-image',NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-cover.png','55','attachment-image','{\"width\":300,\"height\":100,\"url\":\"http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-cover.png\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2020/08/cropped-cover.png\",\"size\":\"full\",\"id\":55,\"alt\":\"\",\"pixels\":30000,\"type\":\"image/png\"}',NULL,NULL,NULL,'2020-08-26 10:29:37','2023-02-21 13:55:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-26 10:29:37','2020-08-26 10:29:37'),(52,'http://supportfazilsay.com/wp-content/uploads/2020/08/logo-e1598437838642.png','77:158ff8d0e5e21f74d16d22c30431d724',56,'post','attachment',1,0,NULL,NULL,'logo','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/logo-e1598437838642.png',NULL,'56','attachment-image',NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/logo-e1598437838642.png','56','attachment-image','{\"width\":445,\"height\":141,\"url\":\"http://supportfazilsay.com/wp-content/uploads/2020/08/logo-e1598437838642.png\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2020/08/logo-e1598437838642.png\",\"size\":\"full\",\"id\":56,\"alt\":\"\",\"pixels\":62745,\"type\":\"image/png\"}',NULL,NULL,NULL,'2020-08-26 10:30:12','2023-02-21 13:55:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-26 10:30:43','2020-08-26 10:30:12'),(54,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-e1598437838642.png','85:2648d5682389f5a3d12b94dec0a2685d',58,'post','attachment',1,0,NULL,NULL,'cropped-logo-e1598437838642.png','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-e1598437838642.png',NULL,'58','attachment-image',NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-e1598437838642.png','58','attachment-image','{\"width\":300,\"height\":100,\"url\":\"http://supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-e1598437838642.png\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2020/08/cropped-logo-e1598437838642.png\",\"size\":\"full\",\"id\":58,\"alt\":\"\",\"pixels\":30000,\"type\":\"image/png\"}',NULL,NULL,NULL,'2020-08-26 10:33:53','2023-02-21 13:55:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-26 10:33:53','2020-08-26 10:33:53'),(57,'https://supportfazilsay.com/the-biggest-reason-people-dont-start-for-themselves-is-financial-they-find-it-difficult-to-get-capital-how-can-you-get-a-loan-or-mini-kredit/','169:1abdcc50edc0d90be7376cd51a5ce478',62,'post','post',1,0,NULL,NULL,'The biggest reason people don’t start for themselves is financial, they find it difficult to get capital, how can you get a loan or mini kredit?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://supportfazilsay.com/wp-content/uploads/2020/10/892jq1.jpg',NULL,'63','featured-image',NULL,NULL,'https://supportfazilsay.com/wp-content/uploads/2020/10/892jq1.jpg','63','featured-image','{\"width\":275,\"height\":183,\"url\":\"https://supportfazilsay.com/wp-content/uploads/2020/10/892jq1.jpg\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2020/10/892jq1.jpg\",\"size\":\"full\",\"id\":63,\"alt\":\"\",\"pixels\":50325,\"type\":\"image/jpeg\"}',0,0,NULL,'2020-10-09 22:39:17','2022-06-07 06:46:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-09 22:43:25','2020-10-16 21:02:17'),(58,'http://supportfazilsay.com/wp-content/uploads/2020/10/892jq1.jpg','64:50bdbeb51156147b7803d7e7a492e4aa',63,'post','attachment',1,62,NULL,NULL,'892jq1','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/10/892jq1.jpg',NULL,'63','attachment-image',NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2020/10/892jq1.jpg','63','attachment-image','{\"width\":275,\"height\":183,\"url\":\"http://supportfazilsay.com/wp-content/uploads/2020/10/892jq1.jpg\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2020/10/892jq1.jpg\",\"size\":\"full\",\"id\":63,\"alt\":\"\",\"pixels\":50325,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2020-10-09 22:40:30','2023-02-21 13:55:31',1,NULL,NULL,NULL,NULL,1,NULL,2,'2020-10-09 22:40:30','2020-10-09 22:40:30'),(59,'https://supportfazilsay.com/category/credit-fazilsay/','53:4aceea215d879b9d53bfe587c0abe011',5,'term','category',NULL,NULL,NULL,NULL,'Credit - Fazilsay',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-09 22:43:00','2022-06-07 06:03:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-09 22:43:25','2020-10-16 21:02:17'),(61,NULL,NULL,0,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2021-04-25 17:52:55','2022-06-07 04:34:08',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(62,NULL,NULL,66,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-25 17:52:55','2022-06-07 04:34:08',1,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL),(64,'https://supportfazilsay.com/why-are-there-restrictions-for-internetting-in-china-and-how-can-a-vpn-help-you-out-with-this-very-issue/','133:e211931f8349af21203f3a0710a3b66b',68,'post','post',1,0,NULL,NULL,'Why are there restrictions for internetting in China? And how can a VPN help you out with this very issue?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://supportfazilsay.com/wp-content/uploads/2021/06/hakcnak21.jpg',NULL,'71','featured-image',NULL,NULL,'https://supportfazilsay.com/wp-content/uploads/2021/06/hakcnak21.jpg','71','featured-image','{\"width\":640,\"height\":425,\"url\":\"https://supportfazilsay.com/wp-content/uploads/2021/06/hakcnak21.jpg\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2021/06/hakcnak21.jpg\",\"size\":\"full\",\"id\":71,\"alt\":\"\",\"pixels\":272000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2021-06-13 19:30:09','2022-06-07 06:16:05',1,NULL,NULL,NULL,NULL,0,3,2,'2021-06-14 20:24:01','2021-06-15 11:30:09'),(65,'https://supportfazilsay.com/category/vpn-service/','49:623c9a4c0580bc0ca18e90bf0702fce2',6,'term','category',NULL,NULL,NULL,NULL,'VPN Service',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-06-13 19:37:58','2022-06-10 06:04:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-06-14 20:24:01','2021-06-15 11:30:09'),(66,'http://supportfazilsay.com/wp-content/uploads/2021/06/hakcnak21.jpg','67:23540572f6def3b453200214967e5089',71,'post','attachment',1,68,NULL,NULL,'hakcnak21','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2021/06/hakcnak21.jpg',NULL,'71','attachment-image',NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2021/06/hakcnak21.jpg','71','attachment-image','{\"width\":640,\"height\":425,\"url\":\"http://supportfazilsay.com/wp-content/uploads/2021/06/hakcnak21.jpg\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2021/06/hakcnak21.jpg\",\"size\":\"full\",\"id\":71,\"alt\":\"\",\"pixels\":272000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-06-14 20:23:55','2023-02-21 13:55:31',1,NULL,NULL,NULL,NULL,1,NULL,2,'2021-06-14 20:23:55','2021-06-14 20:23:55'),(67,'https://supportfazilsay.com/top-3-bitcoin-ethereum-ripple-price-prediction-crypto-majors-meet-formidable-resistance-short-term-upside-limited/','142:5eda64881909c22859cb1d7c53a9a80c',74,'post','post',1,0,NULL,NULL,'Top 3 Bitcoin, Ethereum, Ripple Price Prediction: Crypto Majors Meet Formidable Resistance, Short Term Upside Limited','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://supportfazilsay.com/wp-content/uploads/2021/09/pexels-moose-photos-1037912-scaled.jpg',NULL,'75','featured-image',NULL,NULL,'https://supportfazilsay.com/wp-content/uploads/2021/09/pexels-moose-photos-1037912-scaled.jpg','75','featured-image','{\"width\":2560,\"height\":1709,\"url\":\"https://supportfazilsay.com/wp-content/uploads/2021/09/pexels-moose-photos-1037912-scaled.jpg\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2021/09/pexels-moose-photos-1037912-scaled.jpg\",\"size\":\"full\",\"id\":75,\"alt\":\"\",\"pixels\":4375040,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2021-09-20 12:48:52','2022-06-07 06:46:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-20 12:50:32','2021-08-23 12:47:55'),(68,'https://supportfazilsay.com/category/cryptocurrencies/','54:4bccb49830fd85d73a6b9c3daf4693fd',7,'term','category',NULL,NULL,NULL,NULL,'Cryptocurrencies',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-20 12:50:13','2022-06-08 09:31:30',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-12-08 13:18:10','2021-08-23 12:47:55'),(69,'http://supportfazilsay.com/wp-content/uploads/2021/09/pexels-moose-photos-1037912-scaled.jpg','92:927248b0c222512c94987cf020553a73',75,'post','attachment',1,74,NULL,NULL,'pexels-moose-photos-1037912','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2021/09/pexels-moose-photos-1037912-scaled.jpg',NULL,'75','attachment-image',NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2021/09/pexels-moose-photos-1037912-scaled.jpg','75','attachment-image','{\"width\":2560,\"height\":1709,\"url\":\"http://supportfazilsay.com/wp-content/uploads/2021/09/pexels-moose-photos-1037912-scaled.jpg\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2021/09/pexels-moose-photos-1037912-scaled.jpg\",\"size\":\"full\",\"id\":75,\"alt\":\"\",\"pixels\":4375040,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-23 12:32:12','2023-02-21 13:55:31',1,NULL,NULL,NULL,NULL,1,NULL,2,'2021-09-20 12:48:10','2021-09-20 12:48:10'),(71,'https://supportfazilsay.com/yes-i-do-this-costs-getting-married-in-nijmegen/','76:56e544ce4e2db86422467174e4be9457',77,'post','post',1,0,NULL,NULL,'Yes I do! This costs getting married in Nijmegen','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://supportfazilsay.com/wp-content/uploads/2021/09/luwadlin-bosman-P_HRPYpFTNA-unsplash-scaled.jpg',NULL,'78','featured-image',NULL,NULL,'https://supportfazilsay.com/wp-content/uploads/2021/09/luwadlin-bosman-P_HRPYpFTNA-unsplash-scaled.jpg','78','featured-image','{\"width\":2560,\"height\":1707,\"url\":\"https://supportfazilsay.com/wp-content/uploads/2021/09/luwadlin-bosman-P_HRPYpFTNA-unsplash-scaled.jpg\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2021/09/luwadlin-bosman-P_HRPYpFTNA-unsplash-scaled.jpg\",\"size\":\"full\",\"id\":78,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2021-09-23 12:33:31','2022-06-07 06:46:16',1,NULL,NULL,NULL,NULL,0,2,2,'2021-09-23 12:36:31','2021-09-18 12:32:29'),(72,'https://supportfazilsay.com/category/weddings/','46:8b4dce5f7f691af1ec19bca1313339f2',8,'term','category',NULL,NULL,NULL,NULL,'Weddings',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-23 12:33:40','2022-06-08 02:08:39',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-23 12:36:31','2021-09-18 12:32:29'),(73,'http://supportfazilsay.com/wp-content/uploads/2021/09/luwadlin-bosman-P_HRPYpFTNA-unsplash-scaled.jpg','101:c03e71e9df143967e284ce0c0af76f31',78,'post','attachment',1,77,NULL,NULL,'luwadlin-bosman-P_HRPYpFTNA-unsplash','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2021/09/luwadlin-bosman-P_HRPYpFTNA-unsplash-scaled.jpg',NULL,'78','attachment-image',NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2021/09/luwadlin-bosman-P_HRPYpFTNA-unsplash-scaled.jpg','78','attachment-image','{\"width\":2560,\"height\":1707,\"url\":\"http://supportfazilsay.com/wp-content/uploads/2021/09/luwadlin-bosman-P_HRPYpFTNA-unsplash-scaled.jpg\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2021/09/luwadlin-bosman-P_HRPYpFTNA-unsplash-scaled.jpg\",\"size\":\"full\",\"id\":78,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-23 12:35:14','2023-02-21 13:55:31',1,NULL,NULL,NULL,NULL,1,NULL,2,'2021-09-23 12:35:14','2021-09-23 12:35:14'),(74,'https://supportfazilsay.com/prediction-bitcoin-bull-market-will-end-in-september-2021-at-the-earliest/','102:087a367f79c774a27261e97ce5d22cbe',85,'post','post',1,0,NULL,NULL,'Prediction: Bitcoin bull market will end in September 2021 at the earliest','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://supportfazilsay.com/wp-content/uploads/2021/12/pexels-olya-kobruseva-8358136.jpg',NULL,'86','featured-image',NULL,NULL,'https://supportfazilsay.com/wp-content/uploads/2021/12/pexels-olya-kobruseva-8358136.jpg','86','featured-image','{\"width\":800,\"height\":600,\"url\":\"https://supportfazilsay.com/wp-content/uploads/2021/12/pexels-olya-kobruseva-8358136.jpg\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2021/12/pexels-olya-kobruseva-8358136.jpg\",\"size\":\"full\",\"id\":86,\"alt\":\"\",\"pixels\":480000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2021-12-08 13:18:10','2022-06-07 06:01:15',1,NULL,NULL,NULL,NULL,0,3,2,'2021-12-08 13:18:10','2021-12-28 11:52:34'),(75,'http://supportfazilsay.com/wp-content/uploads/2021/12/pexels-olya-kobruseva-8358136.jpg','87:1390b9d107a2fcbaadc99202563c5a6b',86,'post','attachment',1,85,NULL,NULL,'pexels-olya-kobruseva-8358136','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2021/12/pexels-olya-kobruseva-8358136.jpg',NULL,'86','attachment-image',NULL,NULL,'http://supportfazilsay.com/wp-content/uploads/2021/12/pexels-olya-kobruseva-8358136.jpg','86','attachment-image','{\"width\":800,\"height\":600,\"url\":\"http://supportfazilsay.com/wp-content/uploads/2021/12/pexels-olya-kobruseva-8358136.jpg\",\"path\":\"/opt/aphex/sites/supportfazilsay.com/wp-content/uploads/2021/12/pexels-olya-kobruseva-8358136.jpg\",\"size\":\"full\",\"id\":86,\"alt\":\"\",\"pixels\":480000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2023-02-21 13:55:31','2023-02-21 13:55:31',1,NULL,NULL,NULL,NULL,1,NULL,2,'2021-12-08 13:17:56','2021-12-08 13:17:56');
/*!40000 ALTER TABLE `wp_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_yoast_indexable_hierarchy`
--
DROP TABLE IF EXISTS `wp_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_yoast_indexable_hierarchy` (
`indexable_id` int unsigned NOT NULL,
`ancestor_id` int unsigned NOT NULL,
`depth` int unsigned DEFAULT NULL,
`blog_id` bigint NOT NULL DEFAULT '1',
PRIMARY KEY (`indexable_id`,`ancestor_id`),
KEY `indexable_id` (`indexable_id`),
KEY `ancestor_id` (`ancestor_id`),
KEY `depth` (`depth`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_yoast_indexable_hierarchy`
--
LOCK TABLES `wp_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable_hierarchy` VALUES (1,0,0,1),(3,0,0,1),(7,0,0,1),(10,0,0,1),(11,0,0,1),(12,0,0,1),(13,0,0,1),(14,0,0,1),(15,0,0,1),(16,0,0,1),(17,0,0,1),(18,0,0,1),(19,17,1,1),(22,0,0,1),(25,0,0,1),(27,0,0,1),(37,0,0,1),(38,0,0,1),(45,0,0,1),(47,0,0,1),(51,0,0,1),(52,0,0,1),(54,0,0,1),(57,0,0,1),(58,57,1,1),(59,0,0,1),(64,0,0,1),(65,0,0,1),(66,64,1,1),(67,0,0,1),(68,0,0,1),(69,67,1,1),(71,0,0,1),(72,0,0,1),(73,71,1,1),(74,0,0,1);
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_yoast_migrations`
--
DROP TABLE IF EXISTS `wp_yoast_migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_yoast_migrations` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`version` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `WP_yoast_migrations_version` (`version`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_yoast_migrations`
--
LOCK TABLES `wp_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `wp_yoast_migrations` DISABLE KEYS */;
INSERT INTO `wp_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200616130143'),(18,'20200617122511'),(16,'20200702141921'),(17,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134'),(22,'20210817092415'),(23,'20211020091404');
/*!40000 ALTER TABLE `wp_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_yoast_primary_term`
--
DROP TABLE IF EXISTS `wp_yoast_primary_term`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_yoast_primary_term` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint DEFAULT NULL,
`term_id` bigint DEFAULT NULL,
`taxonomy` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`blog_id` bigint NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `post_taxonomy` (`post_id`,`taxonomy`),
KEY `post_term` (`post_id`,`term_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_yoast_primary_term`
--
LOCK TABLES `wp_yoast_primary_term` WRITE;
/*!40000 ALTER TABLE `wp_yoast_primary_term` DISABLE KEYS */;
INSERT INTO `wp_yoast_primary_term` VALUES (1,19,3,'category','2020-08-24 05:15:59','2022-06-07 06:46:17',1),(2,62,5,'category','2020-10-09 22:43:26','2022-06-07 06:46:17',1),(3,68,6,'category','2021-06-13 19:38:06','2022-06-07 06:16:05',1),(4,74,7,'category','2021-09-20 12:50:32','2022-06-07 06:46:16',1),(5,77,8,'category','2021-09-23 12:35:38','2022-06-07 06:46:16',1),(6,85,7,'category','2021-12-08 13:18:10','2022-06-07 06:01:15',1);
/*!40000 ALTER TABLE `wp_yoast_primary_term` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_yoast_seo_links`
--
DROP TABLE IF EXISTS `wp_yoast_seo_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_yoast_seo_links` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_id` bigint unsigned NOT NULL,
`target_post_id` bigint unsigned NOT NULL,
`type` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`indexable_id` int unsigned DEFAULT NULL,
`target_indexable_id` int unsigned DEFAULT NULL,
`height` int unsigned DEFAULT NULL,
`width` int unsigned DEFAULT NULL,
`size` int unsigned DEFAULT NULL,
`language` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`region` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `link_direction` (`post_id`,`type`),
KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_yoast_seo_links`
--
LOCK TABLES `wp_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_links` VALUES (1,'https://www.medicalfacts.nl/2020/10/04/handige-diensten-voor-mantelzorgers-die-vergoed-worden/',19,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,'https://www.p4r.es/',62,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(5,'https://www.p4r.es/minicreditos/prestamo-1500-euros/',62,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(6,'https://www.globalwatchonline.com/it/vpn/reviews/nord-vpn/',68,0,'external',64,NULL,NULL,NULL,NULL,NULL,NULL),(7,'https://www.globalwatchonline.com/fr/vpn/guide/meilleur-vpn/',68,0,'external',64,NULL,NULL,NULL,NULL,NULL,NULL),(8,'https://www.bitcoinexchangenederland.nl/shiba-inu/',74,0,'external',67,NULL,NULL,NULL,NULL,NULL,NULL),(9,'https://www.bitcoinexchangenederland.nl/ripple/',74,0,'external',67,NULL,NULL,NULL,NULL,NULL,NULL),(10,'https://moveco.io/',77,0,'external',71,NULL,NULL,NULL,NULL,NULL,NULL),(11,'https://folm.io/',77,0,'external',71,NULL,NULL,NULL,NULL,NULL,NULL),(12,'https://currencyconverters.org/nl/cryptocurrencies',85,0,'external',74,NULL,NULL,NULL,NULL,NULL,NULL),(13,'https://currencyconverters.org/pt/cryptocurrencies',85,0,'external',74,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `wp_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_yoast_seo_meta`
--
DROP TABLE IF EXISTS `wp_yoast_seo_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_yoast_seo_meta` (
`object_id` bigint unsigned NOT NULL,
`internal_link_count` int unsigned DEFAULT NULL,
`incoming_link_count` int unsigned DEFAULT NULL,
UNIQUE KEY `object_id` (`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_yoast_seo_meta`
--
LOCK TABLES `wp_yoast_seo_meta` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_meta` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_meta` VALUES (3,0,0),(4,0,0),(5,0,0),(6,0,0),(7,0,0),(8,0,0),(9,0,0),(10,0,0),(11,0,0),(12,0,0),(14,0,0),(17,0,0),(18,0,0),(19,0,0),(22,0,0),(23,0,0),(25,0,0),(26,0,0),(28,0,0),(30,0,0),(36,0,0),(37,0,0),(42,0,0),(43,0,0),(44,0,0),(45,0,0),(46,0,0),(48,0,0),(50,0,0),(52,0,0),(53,0,0),(54,0,0),(57,0,0),(59,0,0),(60,0,0),(62,0,0),(65,0,0);
/*!40000 ALTER TABLE `wp_yoast_seo_meta` 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-16 10:19:41