-- MariaDB dump 10.19 Distrib 10.6.16-MariaDB, for Linux (x86_64)
--
-- Host: localhost Database: blinkbox_booksdb
-- ------------------------------------------------------
-- Server version 10.6.16-MariaDB
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `authors`
--
DROP TABLE IF EXISTS `authors`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `authors` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) DEFAULT NULL,
`personal_name` varchar(100) DEFAULT NULL,
`uri` varchar(100) DEFAULT NULL,
`book_ids` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`openid` varchar(45) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `uri` (`uri`)
) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `authors`
--
LOCK TABLES `authors` WRITE;
/*!40000 ALTER TABLE `authors` DISABLE KEYS */;
INSERT INTO `authors` VALUES (12,'James M. Cain',NULL,'james-m-cain','[\"3\"]',NULL),(13,'Ron Roy',NULL,'ron-roy','[46]',NULL),(14,'Kate DiCamillo',NULL,'kate-dicamillo','[47]',NULL),(15,'Brian Jacques',NULL,'brian-jacques','[48]',NULL),(16,'Jessica Porter',NULL,'jessica-porter','[49]',NULL),(17,'Guy Kawasaki',NULL,'guy-kawasaki','[50]',NULL),(18,'Blake Nelson',NULL,'blake-nelson','[51]',NULL),(19,'Gary Paulsen',NULL,'gary-paulsen','[52]',NULL),(20,'James A. Michener',NULL,'james-a-michener','[53, 54]',NULL),(21,'Philip Pullman',NULL,'philip-pullman','[56]',NULL),(22,'Martin Amis',NULL,'martin-amis','[57]',NULL),(23,'Albert DeMeo',NULL,'albert-demeo','[58]',NULL),(24,'Margaret Olwen Macmillan',NULL,'margaret-olwen-macmillan','[59]',NULL),(25,'Kara Lim',NULL,'kara-lim','[60]',NULL),(26,'Lee Yun Hee',NULL,'lee-yun-hee','[60]',NULL),(27,'M.',NULL,'m','[61]',NULL),(28,'Sandra Cisneros',NULL,'sandra-cisneros','[62]',NULL),(29,'Gerald L. Posner',NULL,'gerald-l-posner','[63]',NULL),(30,'Ruth Krauss',NULL,'ruth-krauss','[65]',NULL),(31,'Carlos Marighella',NULL,'carlos-marighella','[66]',NULL),(32,'Lawrence M. Friedman',NULL,'lawrence-m-friedman','[67]',NULL),(33,'Shel Silverstein',NULL,'shel-silverstein','[68]',NULL),(34,'Arthur Koestler',NULL,'arthur-koestler','[69]',NULL),(35,'Lev Nikolaevič Tolstoy',NULL,'lev-nikolaevič-tolstoy','[70]',NULL),(36,'Jerome Karabel',NULL,'jerome-karabel','[71]',NULL),(37,'Agatha Christie',NULL,'agatha-christie','[72]',NULL),(38,'Martin Millar',NULL,'martin-millar','[73]',NULL),(39,'Neil Cole',NULL,'neil--cole','[74]',NULL),(40,'Scott Westerfeld',NULL,'scott-westerfeld','[75]',NULL),(41,'Polly Horvath',NULL,'polly-horvath','[77]',NULL),(42,'Josiah Bunting',NULL,'josiah-bunting','[78]',NULL),(43,'Annie Proulx',NULL,'annie-proulx','[79]',NULL),(44,'Cory Doctorow',NULL,'cory-doctorow','[80]',NULL),(45,'Jonathan Franzen',NULL,'jonathan-franzen','[\"3\", \"46\", \"11\", \"45\"]',NULL),(46,'George Saunders',NULL,'george-saunders','[82]',NULL),(47,'Carson McCullers',NULL,'carson-mccullers','[84]',NULL),(48,'Thomas Wolfe',NULL,'thomas-wolfe','[85]',NULL),(49,'Terry Pratchett',NULL,'terry-pratchett','[86]',NULL),(50,'Kurt Vonnegut',NULL,'kurt-vonnegut','[87]',NULL),(51,'Janny Wurts',NULL,'janny-wurts','[88]',NULL),(52,'Simon Singh',NULL,'simon-singh','[89]',NULL),(53,'Slavoj Žižek',NULL,'slavoj-žižek','[90]',NULL),(54,'Sharon Creech',NULL,'sharon-creech','[91]',NULL),(55,'Mark Kurlansky',NULL,'mark-kurlansky','[92]',NULL),(56,'Nick Hornby',NULL,'nick-hornby','[93]',NULL),(57,'Paula Danziger',NULL,'paula-danziger','[94]',NULL),(58,'Erica Jong',NULL,'erica-jong','[95]',NULL),(59,'Ian Buruma',NULL,'ian-buruma','[96]',NULL),(60,'Julie Powell',NULL,'julie-powell','[97]',NULL),(61,'Maureen Johnson',NULL,'maureen-johnson','[98]',NULL),(62,'P. G. Wodehouse',NULL,'p-g-wodehouse','[99]',NULL),(63,'Georgette Heyer',NULL,'georgette-heyer','[100]',NULL),(65,'Laura Furman',NULL,'laura-furman','[\"64\"]',NULL),(66,'Deanna Raybourn',NULL,'deanna-raybourn','[3]',NULL),(67,'Susan Mallery',NULL,'susan-mallery','[4]',NULL),(68,'C J Archer',NULL,'c-j-archer','[5]',NULL),(69,'Danielle Steel',NULL,'danielle-steel','[6]',NULL),(70,'Jeffrey Archer',NULL,'jeffrey-archer','[7]',NULL),(71,'Jayne Ann Krentz',NULL,'jayne-ann-krentz','[8]',NULL),(72,'Kate Rudd',NULL,'kate-rudd','[8]',NULL),(73,'Tijon',NULL,'tijon','[1]',NULL),(74,'Dale Mayer',NULL,'dale-mayer','[\"2\"]',NULL);
/*!40000 ALTER TABLE `authors` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `book_details`
--
DROP TABLE IF EXISTS `book_details`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `book_details` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`attr_key` varchar(45) DEFAULT NULL,
`attr_value` varchar(100) DEFAULT NULL,
`book_id` int(11) NOT NULL,
`openid` varchar(45) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `fk_book_details_Books1_idx` (`book_id`),
CONSTRAINT `fk_book_details_Books1` FOREIGN KEY (`book_id`) REFERENCES `books` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `book_details`
--
LOCK TABLES `book_details` WRITE;
/*!40000 ALTER TABLE `book_details` DISABLE KEYS */;
/*!40000 ALTER TABLE `book_details` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `books`
--
DROP TABLE IF EXISTS `books`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `books` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uri` varchar(255) NOT NULL DEFAULT '',
`title` varchar(120) DEFAULT NULL,
`full_title` varchar(150) DEFAULT NULL,
`description` text DEFAULT NULL,
`dimensions` varchar(45) DEFAULT NULL,
`narrator` int(11) DEFAULT NULL,
`release_date` varchar(30) DEFAULT NULL,
`default_lang` varchar(35) DEFAULT NULL,
`other_lang` int(11) DEFAULT NULL,
`publishers` varchar(255) DEFAULT NULL,
`version` varchar(45) DEFAULT NULL,
`categories` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`category_search_key` varchar(255) DEFAULT NULL,
`book_details` int(11) DEFAULT NULL,
`book_ratings` varchar(45) DEFAULT NULL,
`paperback_price` varchar(20) DEFAULT NULL,
`identifiers` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`other_prices` int(11) DEFAULT NULL,
`isbn_13` varchar(13) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`isbn_10` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`asin` varchar(45) DEFAULT NULL,
`title_prefix` varchar(255) DEFAULT NULL,
`subtitle` varchar(255) DEFAULT NULL,
`other_titles` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`authors_list` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`edition_name` varchar(100) DEFAULT NULL,
`languages` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`generes` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`table_of_contents` text DEFAULT NULL,
`img_path` varchar(255) DEFAULT NULL,
`work_titles` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`format` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`covers` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Need to find what is this for in open lib',
`no_of_pages` int(11) DEFAULT NULL,
`latest_version` int(11) DEFAULT NULL,
`date_added` date DEFAULT NULL,
`date_updated` date DEFAULT NULL,
`openid` varchar(45) DEFAULT NULL,
`works_uri` varchar(255) DEFAULT NULL COMMENT 'for reference only',
`amz_id` varchar(20) DEFAULT NULL,
`goodreads_id` varchar(20) DEFAULT NULL,
`is_active` char(1) DEFAULT NULL,
PRIMARY KEY (`id`),
FULLTEXT KEY `category_search_key` (`category_search_key`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `books`
--
LOCK TABLES `books` WRITE;
/*!40000 ALTER TABLE `books` DISABLE KEYS */;
INSERT INTO `books` VALUES (1,'hockey-with-benefits','Hockey with Benefits',NULL,NULL,'5.5 x 1.11 x 8.5 inches',NULL,'March 7, 2023',NULL,NULL,'Tijan (March 7, 2023)',NULL,'[{\"k\": \"romance\", \"v\": \"Romance\"}]','romance',NULL,NULL,'$17.01',NULL,NULL,'9781955873055','1955873054',NULL,NULL,NULL,NULL,'[{\"n\": \"Tijon\", \"u\": \"tijon\"}]',NULL,'[\"Eng\"]',NULL,NULL,'hockey-with-benefits-9.jpg',NULL,NULL,NULL,428,NULL,NULL,'2023-03-14',NULL,NULL,NULL,NULL,'Y'),(2,'toes-up-in-the-tulips-lovely-lethal-gardens','Toes up in the Tulips (Lovely Lethal Gardens)',NULL,NULL,'5.5 x 0.71 x 8.5 inches',NULL,'March 2, 2023',NULL,NULL,'Valley Publishing Ltd. (March 2, 2023)',NULL,'[{\"k\": \"mystery\", \"v\": \"Mystery\"}]','mystery',NULL,NULL,'$13.99',NULL,NULL,'9781773367590','1773367595',NULL,NULL,NULL,NULL,'[{\"n\": \"Dale Mayer\", \"u\": \"dale-mayer\"}]',NULL,'[\"[\"]',NULL,NULL,'toes-up-in-the-tulips-lovely-lethal-gardens-9.jpg',NULL,NULL,NULL,314,NULL,NULL,'2023-03-14',NULL,NULL,NULL,NULL,'Y'),(3,'a-sinister-revenge','A Sinister Revenge','A Sinister Revenge',NULL,'6.2 x 1.1 x 9.3 inches',NULL,'Mar 07, 2023',NULL,NULL,'Berkley',NULL,'[{\"k\": \"mystery\", \"v\": \"Mystery\"}]','mystery',NULL,NULL,'$14.99',NULL,NULL,'9780593545928','0593545923',NULL,NULL,NULL,NULL,'[{\"n\": \"Deanna Raybourn\", \"u\": \"deanna-raybourn\"}]',NULL,'[\"[\"]',NULL,NULL,'a-sinister-revenge-9.jpg',NULL,'\"hardcover\"',NULL,NULL,NULL,'2023-03-14','2023-03-14',NULL,NULL,NULL,NULL,'Y'),(4,'the-sister-effect-susan-mallery','The Sister Effect','The Sister Effect A Novel',NULL,NULL,NULL,'2023',NULL,NULL,'Harlequin Enterprises ULC',NULL,'[{\"k\": \"romance\", \"v\": \"Romance\"}]','romance',NULL,NULL,'$12.99',NULL,NULL,'9781335448644',NULL,NULL,NULL,NULL,NULL,'[{\"n\": \"Susan Mallery\", \"u\": \"susan-mallery\"}]',NULL,NULL,NULL,NULL,'sister-effect-9.jpg',NULL,NULL,NULL,320,NULL,'2023-03-14','2023-03-14',NULL,NULL,NULL,NULL,'Y'),(5,'the-medici-manuscript-deanna-raybourn','The Medici Manuscript','The Medici Manuscript',NULL,NULL,NULL,'Mar 07, 2023',NULL,NULL,'C.J. Archer',NULL,'[{\"k\":\"fantasy\",\"v\":\"Fantasy\"}]','fantasy',NULL,NULL,'$4.99',NULL,NULL,'9781922554321','1922554324',NULL,NULL,NULL,NULL,'[{\"n\": \"C J Archer\", \"u\": \"c-j-archer\"}]',NULL,NULL,NULL,NULL,'the-medici-manuscript-9.jpg',NULL,'\"paperback\"',NULL,280,NULL,'2023-03-14','2023-03-15',NULL,NULL,NULL,NULL,'Y'),(6,'worthy-opponents-danielle-steel','Worthy Opponents','Worthy Opponents A Novel',NULL,'6.07 x 0.9 x 9.17 inches',NULL,'March 28, 2023',NULL,NULL,'Random House Publishing Group',NULL,'[{\"k\": \"fiction\", \"v\": \"Fiction\"}]','fiction',NULL,NULL,'$31.00',NULL,NULL,'9781984821805',NULL,NULL,NULL,NULL,NULL,'[{\"n\": \"Danielle Steel\", \"u\": \"danielle-steel\"}]',NULL,'[\"[\"]',NULL,NULL,'worthy-opponents-9.jpg',NULL,NULL,NULL,320,NULL,'2023-03-14','2023-03-14',NULL,NULL,NULL,NULL,'Y'),(7,'next-in-line-jeffrey-archer','Next in Line','Next in Line',NULL,NULL,NULL,'September 27, 2022',NULL,NULL,'HarperCollins Publishers Limited',NULL,'[{\"k\": \"thriller\", \"v\": \"Thriller\"}]','thriller',NULL,NULL,'$9.99',NULL,NULL,'9780008474331','0008523231',NULL,NULL,NULL,NULL,'[{\"n\": \"Jeffrey Archer\", \"u\": \"jeffrey-archer\"}]',NULL,'[\"[\"]',NULL,NULL,'next-in-line-9.jpg',NULL,NULL,NULL,385,NULL,'2023-03-14','2023-03-14',NULL,NULL,NULL,NULL,'Y'),(8,'the-desperate-game-jayne-ann-krentz','The Desperate Game','The Desperate Game',NULL,NULL,NULL,'Jul 10, 2012',NULL,NULL,'Brilliance Audio',NULL,'[{\"k\": \"thriller\", \"v\": \"Thriller\"}]','thriller',NULL,NULL,'$39.24',NULL,NULL,'9781455896028','1455896020',NULL,NULL,NULL,NULL,'[{\"n\": \"Jayne Ann Krentz\", \"u\": \"jayne-ann-krentz\"}, {\"n\": \"Kate Rudd\", \"u\": \"kate-rudd\"}]',NULL,'[\"[\"]',NULL,NULL,'the-desperate-game-9.jpg',NULL,'\"audio cd\"',NULL,168,NULL,'2023-03-14','2023-03-14',NULL,NULL,NULL,NULL,'Y');
/*!40000 ALTER TABLE `books` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `books_isbn`
--
DROP TABLE IF EXISTS `books_isbn`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `books_isbn` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`isbn` varchar(10) DEFAULT NULL,
`isbn_13` varchar(13) DEFAULT NULL,
`is_active` char(1) 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 `books_isbn`
--
LOCK TABLES `books_isbn` WRITE;
/*!40000 ALTER TABLE `books_isbn` DISABLE KEYS */;
INSERT INTO `books_isbn` VALUES (1,'0593545923','9780593545928','Y'),(2,NULL,'9781335448644','Y'),(3,'1922554324','9781922554321','Y'),(4,NULL,'9781984821805','Y'),(5,NULL,'9780008474331','Y'),(6,'1455896020','9781455896028','Y');
/*!40000 ALTER TABLE `books_isbn` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `categories`
--
DROP TABLE IF EXISTS `categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(60) DEFAULT NULL,
`uri` varchar(100) DEFAULT NULL,
`is_active` char(1) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `categories`
--
LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
INSERT INTO `categories` VALUES (1,'Arts','arts','N'),(2,'Animals','animals','N'),(3,'Fiction','fiction','Y'),(4,'Science & Maths','science-and-mathematics','N'),(5,'Business & Finance','buisness-and-finance','N'),(6,'History','history','N'),(7,'Health & Wellness','health-and-wellness','N'),(8,'Biography','biography','N'),(9,'Social Sciences','social-sciences','N'),(10,'Places','places','N'),(11,'Textbooks','text-books','N'),(12,'Mystery','mystery','Y'),(13,'Romance','romance','Y'),(14,'Fantasy','fantasy','Y'),(15,'Thriller','thriller','Y');
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `editions`
--
DROP TABLE IF EXISTS `editions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `editions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(120) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
`listening_length` varchar(45) DEFAULT NULL,
`author` int(11) DEFAULT NULL,
`narrator` int(11) DEFAULT NULL,
`release_date` date DEFAULT NULL,
`default_lang` varchar(35) DEFAULT NULL,
`other_lang` int(11) DEFAULT NULL,
`publisher` varchar(60) DEFAULT NULL,
`version` varchar(45) DEFAULT NULL,
`category_id` int(11) DEFAULT NULL,
`category` varchar(45) DEFAULT NULL,
`book_details` int(11) DEFAULT NULL,
`book_ratings` varchar(45) DEFAULT NULL,
`paperback_price` decimal(2,0) DEFAULT NULL,
`other_prices` int(11) DEFAULT NULL,
`isbn_13` varchar(14) DEFAULT NULL,
`isbn_10` varchar(11) DEFAULT NULL,
`asin` varchar(45) DEFAULT NULL,
`is_active` char(1) DEFAULT NULL,
`title_prefix` varchar(255) DEFAULT NULL,
`subtitle` varchar(255) DEFAULT NULL,
`other_titles` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`authors_list` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`edition_name` varchar(100) DEFAULT NULL,
`languages` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`generes` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`table_of_contents` text DEFAULT NULL,
`work_titles` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`format` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`covers` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Need to find what is this for in open lib',
`no_of_pages` int(11) DEFAULT NULL,
`latest_version` int(11) DEFAULT NULL,
`date_added` date DEFAULT NULL,
`date_updated` date DEFAULT NULL,
`openid` varchar(45) DEFAULT NULL,
`book_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `book_id` (`book_id`),
CONSTRAINT `editions_ibfk_1` FOREIGN KEY (`book_id`) REFERENCES `books` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `editions`
--
LOCK TABLES `editions` WRITE;
/*!40000 ALTER TABLE `editions` DISABLE KEYS */;
/*!40000 ALTER TABLE `editions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `listings`
--
DROP TABLE IF EXISTS `listings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `listings` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`opl_uri` varchar(255) DEFAULT NULL,
`book_ids` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT 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 `listings`
--
LOCK TABLES `listings` WRITE;
/*!40000 ALTER TABLE `listings` DISABLE KEYS */;
/*!40000 ALTER TABLE `listings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `pricing`
--
DROP TABLE IF EXISTS `pricing`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pricing` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`kindle_price` varchar(10) DEFAULT NULL,
`audiobook_price` varchar(10) DEFAULT NULL,
`hardcover_price` varchar(10) DEFAULT NULL,
`paperback_price` varchar(10) DEFAULT NULL,
`epub` varchar(10) DEFAULT NULL,
`formats` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`book_id` int(11) NOT NULL,
`openid` varchar(45) DEFAULT NULL,
`units` varchar(4) DEFAULT NULL,
`source` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `book_id` (`book_id`),
KEY `fk_pricing_Books_idx` (`book_id`),
CONSTRAINT `fk_pricing_Books` FOREIGN KEY (`book_id`) REFERENCES `books` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `pricing`
--
LOCK TABLES `pricing` WRITE;
/*!40000 ALTER TABLE `pricing` DISABLE KEYS */;
INSERT INTO `pricing` VALUES (1,'$0.00',NULL,NULL,'$17.01',NULL,NULL,1,NULL,NULL,NULL),(2,'$7.99',NULL,NULL,'$13.99',NULL,NULL,2,NULL,NULL,NULL);
/*!40000 ALTER TABLE `pricing` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ratings`
--
DROP TABLE IF EXISTS `ratings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ratings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`amazon` float DEFAULT NULL,
`amz_reviews` int(11) DEFAULT NULL COMMENT 'No of Amazon Reviews',
`goodreads` float DEFAULT NULL,
`gd_reviews` int(11) DEFAULT NULL COMMENT 'No of good read reviews',
`rank_up` int(11) DEFAULT NULL,
`rank_down` int(11) DEFAULT NULL,
`book_id` int(11) NOT NULL,
PRIMARY KEY (`id`,`book_id`),
KEY `fk_ratings_Books1_idx` (`book_id`),
CONSTRAINT `fk_ratings_Books1` FOREIGN KEY (`book_id`) REFERENCES `books` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ratings`
--
LOCK TABLES `ratings` WRITE;
/*!40000 ALTER TABLE `ratings` DISABLE KEYS */;
INSERT INTO `ratings` VALUES (1,NULL,NULL,NULL,NULL,NULL,NULL,7),(2,NULL,NULL,NULL,NULL,NULL,NULL,3),(3,NULL,NULL,NULL,NULL,NULL,NULL,6),(4,NULL,NULL,NULL,NULL,NULL,NULL,8),(5,NULL,NULL,NULL,NULL,NULL,NULL,5),(6,NULL,NULL,NULL,NULL,NULL,NULL,4),(7,NULL,NULL,NULL,NULL,NULL,NULL,2),(8,NULL,NULL,NULL,NULL,NULL,NULL,6),(9,NULL,NULL,NULL,NULL,NULL,NULL,3),(10,NULL,NULL,NULL,NULL,NULL,NULL,5),(11,NULL,NULL,NULL,NULL,NULL,NULL,7),(12,NULL,NULL,NULL,NULL,NULL,NULL,8),(13,NULL,NULL,NULL,NULL,NULL,NULL,4),(14,NULL,NULL,NULL,NULL,NULL,NULL,1),(15,NULL,NULL,NULL,NULL,NULL,NULL,8),(16,NULL,NULL,NULL,NULL,NULL,NULL,7),(17,NULL,NULL,NULL,NULL,NULL,NULL,2),(18,NULL,NULL,NULL,NULL,NULL,NULL,6),(19,NULL,NULL,NULL,NULL,NULL,NULL,1),(20,NULL,NULL,NULL,NULL,NULL,NULL,4),(21,NULL,NULL,NULL,NULL,NULL,NULL,3),(22,NULL,NULL,NULL,NULL,NULL,NULL,5);
/*!40000 ALTER TABLE `ratings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) 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 NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT 0,
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT 'comment',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
`link_rating` int(11) NOT NULL DEFAULT 0,
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) 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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=15789 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','https://blinkboxbooks.com','yes'),(2,'home','https://blinkboxbooks.com','yes'),(3,'blogname','BlinkBoxBook','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','bbb@bbb.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:116:{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:7:\"list/?$\";s:24:\"index.php?post_type=list\";s:37:\"list/feed/(feed|rdf|rss|rss2|atom)/?$\";s:41:\"index.php?post_type=list&feed=$matches[1]\";s:32:\"list/(feed|rdf|rss|rss2|atom)/?$\";s:41:\"index.php?post_type=list&feed=$matches[1]\";s:24:\"list/page/([0-9]{1,})/?$\";s:42:\"index.php?post_type=list&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:32:\"list/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"list/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"list/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"list/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"list/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"list/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:21:\"list/([^/]+)/embed/?$\";s:37:\"index.php?list=$matches[1]&embed=true\";s:25:\"list/([^/]+)/trackback/?$\";s:31:\"index.php?list=$matches[1]&tb=1\";s:45:\"list/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?list=$matches[1]&feed=$matches[2]\";s:40:\"list/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?list=$matches[1]&feed=$matches[2]\";s:33:\"list/([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?list=$matches[1]&paged=$matches[2]\";s:40:\"list/([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?list=$matches[1]&cpage=$matches[2]\";s:29:\"list/([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?list=$matches[1]&page=$matches[2]\";s:21:\"list/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:31:\"list/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:51:\"list/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"list/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"list/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:27:\"list/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:3:{i:0;s:30:\"advanced-custom-fields/acf.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:20:\"edit-books/index.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:4:{i:0;s:87:\"/chroot/home/blinkbox/blinkboxbooks.com/html/wp-content/themes/blinkboxbooks/header.php\";i:2;s:86:\"/chroot/home/blinkbox/blinkboxbooks.com/html/wp-content/themes/blinkboxbooks/style.css\";i:3;s:87:\"/chroot/home/blinkbox/blinkboxbooks.com/html/wp-content/themes/blinkboxbooks/footer.php\";i:4;s:0:\"\";}','no'),(40,'template','blinkboxbooks','yes'),(41,'stylesheet','blinkboxbooks','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','56657','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','posts','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','0','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1689506980','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','53496','yes'),(100,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','2','no'),(103,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:9:{i:1702762181;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:1702769381;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:1702769396;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1702812596;a:2:{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:1702812598;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:1702814833;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:1703029219;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1703071781;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'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(121,'recovery_keys','a:0:{}','yes'),(122,'https_detection_errors','a:0:{}','yes'),(126,'theme_mods_twentytwentythree','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1674106027;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(155,'finished_updating_comment_type','1','yes'),(172,'_transient_health-check-site-status-result','{\"good\":17,\"recommended\":5,\"critical\":1}','yes'),(190,'theme_mods_blinkboxbooks','a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1678860803;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}}}}','yes'),(198,'current_theme','BlinkBoxBooks','yes'),(199,'theme_switched','','yes'),(338,'wp_calendar_block_has_published_posts','1','yes'),(774,'recently_activated','a:0:{}','yes'),(845,'acf_version','6.0.7','yes'),(1367,'category_children','a:0:{}','yes'),(1454,'recovery_mode_email_last_sent','1676013566','yes'),(1630,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.7.3\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1676349056;s:7:\"version\";s:5:\"5.7.3\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(1635,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(1876,'theme_mods_twentytwentyone','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1678860806;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:9:\"sidebar-1\";a:0:{}}}}','yes'),(6345,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:11:\"bbb@bbb.com\";s:7:\"version\";s:5:\"6.4.2\";s:9:\"timestamp\";i:1701886160;}','no'),(11043,'db_upgraded','','yes'),(14297,'wp_attachment_pages_enabled','1','yes'),(15430,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.4.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.4.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.2\";s:7:\"version\";s:5:\"6.4.2\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1702726553;s:15:\"version_checked\";s:5:\"6.4.2\";s:12:\"translations\";a:0:{}}','no'),(15669,'_site_transient_timeout_php_check_6a93f292d9a273c004fc36e1f86d97b3','1703071948','no'),(15670,'_site_transient_php_check_6a93f292d9a273c004fc36e1f86d97b3','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}','no'),(15774,'_site_transient_timeout_theme_roots','1702728354','no'),(15775,'_site_transient_theme_roots','a:6:{s:13:\"blinkboxbooks\";s:7:\"/themes\";s:10:\"mu-plugins\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(15776,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1702726554;s:7:\"checked\";a:5:{s:13:\"blinkboxbooks\";s:3:\"1.0\";s:16:\"twentytwentyfour\";s:3:\"1.0\";s:15:\"twentytwentyone\";s:3:\"1.7\";s:17:\"twentytwentythree\";s:3:\"1.0\";s:15:\"twentytwentytwo\";s:3:\"1.3\";}s:8:\"response\";a:3:{s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.0.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.3.zip\";s:8:\"requires\";s:3:\"6.1\";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.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.6.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:1:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.0.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}}s:12:\"translations\";a:0:{}}','no'),(15777,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1702726554;s:8:\"response\";a:3:{s:30:\"advanced-custom-fields/acf.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:36:\"w.org/plugins/advanced-custom-fields\";s:4:\"slug\";s:22:\"advanced-custom-fields\";s:6:\"plugin\";s:30:\"advanced-custom-fields/acf.php\";s:11:\"new_version\";s:5:\"6.2.4\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/advanced-custom-fields/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/advanced-custom-fields.6.2.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png?rev=1082746\";s:2:\"1x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-128x128.png?rev=1082746\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=2892919\";s:2:\"1x\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=2892919\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"7.0\";}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.3.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:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:6:\"5.6.20\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.8.4\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.8.4.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"7.4\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{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.3.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:7:\"checked\";a:5:{s:30:\"advanced-custom-fields/acf.php\";s:5:\"6.0.7\";s:19:\"akismet/akismet.php\";s:5:\"5.0.1\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.7.3\";s:20:\"edit-books/index.php\";s:3:\"1.0\";s:9:\"hello.php\";s:5:\"1.7.2\";}}','no'),(15788,'_transient_doing_cron','1702834443.9131569862365722656250','yes');
/*!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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=806 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 (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(343,141,'_edit_lock','1674201773:1'),(381,160,'_wp_attached_file','2023/01/pastoralia-0747553866.jpg'),(382,160,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:180;s:6:\"height\";i:272;s:4:\"file\";s:33:\"2023/01/pastoralia-0747553866.jpg\";s:8:\"filesize\";i:9301;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"pastoralia-0747553866-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4856;}}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:{}}}'),(391,162,'_edit_lock','1674456731:1'),(404,168,'_edit_lock','1674459446:1'),(411,173,'_wp_attached_file','2023/01/pastoralia-0747553866-1.jpg'),(412,173,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:180;s:6:\"height\";i:272;s:4:\"file\";s:35:\"2023/01/pastoralia-0747553866-1.jpg\";s:8:\"filesize\";i:9301;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"pastoralia-0747553866-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4856;}}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:{}}}'),(415,168,'_thumbnail_id','173'),(418,174,'_edit_lock','1674548684:1'),(419,175,'_wp_attached_file','2023/01/pastoralia-0747553866-2.jpg'),(420,175,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:180;s:6:\"height\";i:272;s:4:\"file\";s:35:\"2023/01/pastoralia-0747553866-2.jpg\";s:8:\"filesize\";i:9301;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"pastoralia-0747553866-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4856;}}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:{}}}'),(423,174,'_thumbnail_id','175'),(426,179,'_edit_lock','1674559544:1'),(427,180,'_edit_lock','1674710225:1'),(428,180,'_edit_last','1'),(429,179,'_edit_last','1'),(430,179,'related_posts','a:4:{i:0;s:3:\"147\";i:1;s:3:\"140\";i:2;s:3:\"152\";i:3;s:3:\"154\";}'),(431,179,'_related_posts','field_63cf914255ddb'),(432,182,'_edit_lock','1676461167:1'),(433,182,'_edit_last','1'),(434,182,'related_posts','a:8:{i:0;s:3:\"154\";i:1;s:3:\"147\";i:2;s:3:\"145\";i:3;s:3:\"157\";i:4;s:3:\"209\";i:5;s:3:\"210\";i:6;s:3:\"211\";i:7;s:3:\"215\";}'),(435,182,'_related_posts','field_63cf914255ddb'),(525,217,'_edit_lock','1674710234:1'),(526,217,'_edit_last','1'),(527,217,'related_posts','a:4:{i:0;s:3:\"215\";i:1;s:3:\"147\";i:2;s:3:\"218\";i:3;s:3:\"209\";}'),(528,217,'_related_posts','field_63cf914255ddb'),(536,220,'_edit_lock','1674726411:1'),(537,220,'_edit_last','1'),(538,220,'related_posts','a:3:{i:0;s:3:\"215\";i:1;s:3:\"218\";i:2;s:3:\"224\";}'),(539,220,'_related_posts','field_63cf914255ddb'),(546,223,'_edit_lock','1674724533:1'),(549,224,'_edit_lock','1674725399:1'),(550,218,'_edit_lock','1674725412:1'),(559,230,'_edit_lock','1676348607:1'),(560,233,'_edit_lock','1676348677:1'),(563,3,'_edit_lock','1676348724:1'),(566,3,'_wp_desired_post_slug','privacy-policy'),(567,236,'_edit_lock','1676348745:1'),(570,233,'_wp_desired_post_slug','privacy-policy'),(571,238,'_form','<label> Your name\n [text* your-name autocomplete:name] </label>\n\n<label> Your email\n [email* your-email autocomplete:email] </label>\n\n<label> Subject\n [text* your-subject] </label>\n\n<label> Your message (optional)\n [textarea your-message] </label>\n\n[submit \"Submit\"]'),(572,238,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:39:\"[_site_title] <wordpress@bbb.localhost>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(573,238,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:39:\"[_site_title] <wordpress@bbb.localhost>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(574,238,'_messages','a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:27:\"Please fill out this field.\";s:16:\"invalid_too_long\";s:32:\"This field has a too long input.\";s:17:\"invalid_too_short\";s:33:\"This field has a too short input.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:31:\"The uploaded file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";}'),(575,238,'_additional_settings',''),(576,238,'_locale','en_US'),(577,239,'_edit_lock','1676349333:1'),(578,241,'_menu_item_type','post_type'),(579,241,'_menu_item_menu_item_parent','0'),(580,241,'_menu_item_object_id','239'),(581,241,'_menu_item_object','page'),(582,241,'_menu_item_target',''),(583,241,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(584,241,'_menu_item_xfn',''),(585,241,'_menu_item_url',''),(587,242,'_menu_item_type','post_type'),(588,242,'_menu_item_menu_item_parent','0'),(589,242,'_menu_item_object_id','236'),(590,242,'_menu_item_object','page'),(591,242,'_menu_item_target',''),(592,242,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(593,242,'_menu_item_xfn',''),(594,242,'_menu_item_url',''),(596,243,'_menu_item_type','post_type'),(597,243,'_menu_item_menu_item_parent','0'),(598,243,'_menu_item_object_id','230'),(599,243,'_menu_item_object','page'),(600,243,'_menu_item_target',''),(601,243,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(602,243,'_menu_item_xfn',''),(603,243,'_menu_item_url',''),(605,239,'_edit_last','1'),(620,228,'_wp_desired_post_slug','organic-church-neil-cole'),(623,227,'_wp_desired_post_slug','the-o-henry-prize-stories-2003-laura-furman'),(626,226,'_wp_desired_post_slug','the-good-fairies-of-new-york-martin-millar'),(629,225,'_wp_desired_post_slug','god-bless-you-mr-rosewater-kurt-vonnegut'),(632,224,'_wp_desired_post_slug','of-time-and-the-river-thomas-wolfe'),(635,223,'_wp_desired_post_slug','no-wind-of-blame-georgette-heyer'),(638,222,'_wp_desired_post_slug','carpe-jugulum-terry-pratchett'),(641,221,'_wp_desired_post_slug','fugitive-prince-janny-wurts'),(644,218,'_wp_desired_post_slug','the-postman-always-rings-twice-james-m-cain'),(647,215,'_wp_desired_post_slug','the-tale-of-despereaux-kate-dicamillo'),(650,212,'_wp_desired_post_slug','the-subtle-knife'),(653,211,'_wp_desired_post_slug','the-empty-envelope-ron-roy'),(656,210,'_wp_desired_post_slug','caramelo-sandra-cisneros'),(659,209,'_wp_desired_post_slug','i-can-fly-ruth-krauss'),(662,250,'_wp_desired_post_slug','sister-effect'),(665,249,'_wp_desired_post_slug','the-medici-manuscript'),(668,248,'_wp_desired_post_slug','the-desperate-game'),(671,247,'_wp_desired_post_slug','worthy-opponents'),(674,246,'_wp_desired_post_slug','a-sinister-revenge'),(677,245,'_wp_desired_post_slug','next-in-line'),(680,174,'_wp_desired_post_slug','pastoralia-george-saunders'),(683,158,'_wp_desired_post_slug','so-yesterday-scott-westerfeld'),(686,157,'_wp_desired_post_slug','crime-and-punishment-in-american-history-lawrence-m-friedman'),(689,156,'_wp_desired_post_slug','murder-in-amsterdam-ian-buruma'),(692,155,'_wp_desired_post_slug','the-story-of-salt-mark-kurlansky'),(695,154,'_wp_desired_post_slug','the-code-of-the-woosters-p-g-wodehouse'),(698,153,'_wp_desired_post_slug','paris-1919-margaret-olwen-macmillan'),(701,152,'_wp_desired_post_slug','fear-of-fifty-erica-jong'),(704,151,'_wp_desired_post_slug','for-the-sins-of-my-father-albert-demeo'),(707,150,'_wp_desired_post_slug','koba-the-dread-martin-amis'),(710,149,'_wp_desired_post_slug','ulysses-s-grant-josiah-bunting'),(713,148,'_wp_desired_post_slug','the-chosen-jerome-karabel'),(716,147,'_wp_desired_post_slug','absolutely-normal-chaos-sharon-creech'),(719,146,'_wp_desired_post_slug','the-amber-spyglass-his-dark-materials-book-3-philip-pullman'),(722,145,'_wp_desired_post_slug','caravans-james-a-michener'),(725,144,'_wp_desired_post_slug','the-hip-chicks-guide-to-macrobiotics-jessica-porter'),(728,143,'_wp_desired_post_slug','the-art-of-the-start-guy-kawasaki'),(731,142,'_wp_desired_post_slug','the-new-rules-of-high-school-blake-nelson'),(734,141,'_wp_desired_post_slug','tuckets-travels-gary-paulsen'),(737,140,'_wp_desired_post_slug','chesapeake-james-a-michener'),(740,139,'_wp_desired_post_slug','triss-brian-jacques'),(757,298,'_edit_last','1'),(760,298,'_wp_old_slug','sister-effect'),(761,298,'_edit_lock','1678790497:1'),(762,295,'_edit_last','1'),(765,295,'_wp_old_slug','the-medici-manuscript'),(766,295,'_edit_lock','1678789477:1'),(767,293,'_edit_last','1'),(770,293,'_wp_old_slug','worthy-opponents'),(771,293,'_edit_lock','1678789606:1'),(772,297,'_edit_last','1'),(775,297,'_wp_old_slug','the-desperate-game'),(776,297,'_edit_lock','1678789871:1'),(779,298,'_wp_old_slug','sister-effect-susan-mallery'),(780,299,'_edit_lock','1678859607: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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(255) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text 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 NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT 0,
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=323 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 (314,2,'2023-03-15 06:32:39','2023-03-15 06:32:39','','The Desperate Game','','publish','open','open','','the-desperate-game-jayne-ann-krentz','','','2023-03-15 06:32:39','2023-03-15 06:32:39','',0,'https://blinkboxbooks.com/the-desperate-game-jayne-ann-krentz/',0,'post','',0),(315,2,'2023-03-15 06:32:46','2023-03-15 06:32:46','','Next in Line','','publish','open','open','','next-in-line-jeffrey-archer','','','2023-03-15 06:32:46','2023-03-15 06:32:46','',0,'https://blinkboxbooks.com/next-in-line-jeffrey-archer/',0,'post','',0),(316,2,'2023-03-15 06:32:56','2023-03-15 06:32:56','','Toes up in the Tulips (Lovely Lethal Gardens)','','publish','open','open','','toes-up-in-the-tulips-lovely-lethal-gardens','','','2023-03-15 06:32:56','2023-03-15 06:32:56','',0,'https://blinkboxbooks.com/toes-up-in-the-tulips-lovely-lethal-gardens/',0,'post','',0),(317,2,'2023-03-15 06:32:57','2023-03-15 06:32:57','','Worthy Opponents','','publish','open','open','','worthy-opponents-danielle-steel','','','2023-03-15 06:32:57','2023-03-15 06:32:57','',0,'https://blinkboxbooks.com/worthy-opponents-danielle-steel/',0,'post','',0),(318,2,'2023-03-15 06:32:58','2023-03-15 06:32:58','','Hockey with Benefits','','publish','open','open','','hockey-with-benefits','','','2023-03-15 06:32:58','2023-03-15 06:32:58','',0,'https://blinkboxbooks.com/hockey-with-benefits/',0,'post','',0),(319,2,'2023-03-15 06:33:01','2023-03-15 06:33:01','','The Sister Effect','','publish','open','open','','the-sister-effect-susan-mallery','','','2023-03-15 06:33:01','2023-03-15 06:33:01','',0,'https://blinkboxbooks.com/the-sister-effect-susan-mallery/',0,'post','',0),(320,2,'2023-03-15 06:33:02','2023-03-15 06:33:02','','A Sinister Revenge','','publish','open','open','','a-sinister-revenge','','','2023-03-15 06:33:02','2023-03-15 06:33:02','',0,'https://blinkboxbooks.com/a-sinister-revenge/',0,'post','',0),(321,2,'2023-03-15 06:33:03','2023-03-15 06:33:03','','The Medici Manuscript','','publish','open','open','','the-medici-manuscript-deanna-raybourn','','','2023-03-15 06:33:03','2023-03-15 06:33:03','',0,'https://blinkboxbooks.com/the-medici-manuscript-deanna-raybourn/',0,'post','',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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`term_order` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=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 (139,1,0),(140,1,0),(141,1,0),(142,1,0),(143,1,0),(144,1,0),(145,1,0),(146,1,0),(147,1,0),(148,1,0),(149,1,0),(150,1,0),(151,1,0),(152,1,0),(153,1,0),(154,1,0),(155,1,0),(156,1,0),(157,1,0),(158,1,0),(162,1,0),(163,1,0),(164,1,0),(165,1,0),(166,1,0),(167,1,0),(168,1,0),(174,1,0),(209,1,0),(210,1,0),(211,1,0),(212,1,0),(215,1,0),(218,1,0),(221,1,0),(222,1,0),(223,1,0),(224,1,0),(225,1,0),(226,1,0),(227,1,0),(228,1,0),(233,1,0),(241,3,0),(242,3,0),(243,3,0),(245,1,0),(246,1,0),(247,1,0),(248,1,0),(249,1,0),(250,1,0),(292,1,0),(293,1,0),(294,1,0),(295,1,0),(296,1,0),(297,1,0),(298,1,0),(299,1,0),(314,1,0),(315,1,0),(316,1,0),(317,1,0),(318,1,0),(319,1,0),(320,1,0),(321,1,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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`taxonomy` varchar(32) NOT NULL DEFAULT '',
`description` longtext NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`count` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=4 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,8),(3,3,'nav_menu','',0,3);
/*!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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT 0,
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=4 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),(3,'footer_menu','footer_menu',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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','admin'),(2,1,'first_name',''),(3,1,'last_name',''),(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','theme_editor_notice'),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"2b28ababba6c42c797a8d7e742668d5409857813044edcc6357c179b3550336f\";a:4:{s:10:\"expiration\";i:1681620267;s:2:\"ip\";s:14:\"117.254.35.114\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36\";s:5:\"login\";i:1681447467;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','322'),(18,1,'wp_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:3:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;s:10:\"openPanels\";a:3:{i:0;s:11:\"post-status\";i:1;s:23:\"taxonomy-panel-category\";i:2;s:14:\"featured-image\";}}s:9:\"_modified\";s:24:\"2023-01-23T05:27:42.550Z\";}'),(19,2,'nickname','nvosen'),(20,2,'first_name','Noah'),(21,2,'last_name','Vosen'),(22,2,'description',''),(23,2,'rich_editing','true'),(24,2,'syntax_highlighting','true'),(25,2,'comment_shortcuts','false'),(26,2,'admin_color','fresh'),(27,2,'use_ssl','0'),(28,2,'show_admin_bar_front','true'),(29,2,'locale',''),(30,2,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),(31,2,'wp_user_level','7'),(32,2,'dismissed_wp_pointers',''),(33,1,'wp_user-settings','libraryContent=browse'),(34,1,'wp_user-settings-time','1674455826'),(35,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\";}'),(36,1,'metaboxhidden_nav-menus','a:2:{i:0;s:18:\"add-post-type-list\";i:1;s:12:\"add-post_tag\";}'),(37,1,'nav_menu_recently_edited','3'),(38,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"117.254.35.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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) NOT NULL DEFAULT '',
`user_pass` varchar(255) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT 0,
`display_name` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'admin','$P$BaaCi6XIHGW7agcnctzRmB4nv2UAvK/','admin','bbb@bbb.com','http://bbb.localhost','2023-01-17 11:29:41','',0,'admin'),(2,'nvosen','$P$BHMsxtQw0L/avvdkaokF./rLq2Re8p0','nvosen','nvosen@bbb.com','','2023-01-20 07:36:28','',0,'Noah Vosen');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping routines for database 'blinkbox_booksdb'
--
/*!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-12-18 16:28:41
|