PromucFlow_constructor/app/client/cypress/init-mysql-dump-for-test.sql

2288 lines
1.2 MiB
MySQL
Raw Normal View History

CREATE DATABASE fakeapi;
use fakeapi;
CREATE TABLE configs (
id int NOT NULL AUTO_INCREMENT,
configName varchar(255) NOT NULL,
configJson JSON,
configVersion int ,
updatedAt TIMESTAMP,
updatedBy varchar(255),
primary key (id)
);
CREATE TABLE users (
id int NOT NULL AUTO_INCREMENT,
name varchar(255),
createdAt datetime,
updatedAt datetime,
status varchar(255),
gender varchar(255),
avatar varchar(255),
email varchar(255),
address varchar(255),
role varchar(255),
dob date,
phoneNo varchar(255),
primary key (id)
);
insert into configs (id, configName, configJson, configVersion, updatedAt, updatedBy)
values (3, 'New Config', '{"key": "val1"}', 1, '2020-08-26 11:14:28', ''),
(5, 'New Config', '{"key": "val2"}', 1, '2020-08-26 11:14:28', '');
insert into users (id, name, createdAt, updatedAt, status, gender, avatar, email, address, role, dob, phoneNo) values
(7, 'Test user 7', '2019-08-07 21:36:27', '2019-10-21 03:23:42', 'APPROVED', 'Male', 'https://robohash.org/quiofficiadicta.jpg?size=100x100&set=set1' ,'xkainz6@ihg.com', '19624 Scofield Way', 'Admin','1993-08-14', ''),
(8, 'Test user 8', '2019-08-07 21:36:27', '2019-10-21 03:23:42', 'APPROVED', 'Male', 'https://robohash.org/quiofficiadicta.jpg?size=100x100&set=set1' ,'xkainz6@ihg.com', '19624 Scofield Way', 'Admin','1993-08-14', ''),
(9, 'Test user 9', '2019-08-07 21:36:27', '2019-10-21 03:23:42', 'APPROVED', 'Male', 'https://robohash.org/quiofficiadicta.jpg?size=100x100&set=set1' ,'xkainz6@ihg.com', '19624 Scofield Way', 'Admin','1993-08-14', '');
-- phpMyAdmin SQL Dump
-- version 5.1.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Jan 24, 2022 at 10:21 AM
-- Server version: 8.0.27
-- PHP Version: 7.4.27
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!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 */;
--
-- Database: `wordpress`
--
-- --------------------------------------------------------
--
-- Table structure for table `perf_commentmeta`
--
CREATE TABLE `perf_commentmeta` (
`meta_id` bigint UNSIGNED NOT NULL,
`comment_id` bigint UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `perf_comments`
--
CREATE TABLE `perf_comments` (
`comment_ID` bigint UNSIGNED NOT NULL,
`comment_post_ID` bigint UNSIGNED NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_karma` int NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
`comment_parent` bigint UNSIGNED NOT NULL DEFAULT '0',
`user_id` bigint UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `perf_comments`
--
INSERT INTO `perf_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'A WordPress Commenter', 'wapuu@wordpress.example', 'https://wordpress.org/', '', '2022-01-24 10:16:52', '2022-01-24 10:16:52', 'Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.', 0, '1', '', 'comment', 0, 0),
(2, 155, 'Anon', 'anon@example.com', '', '', '2007-09-04 10:49:28', '2007-09-04 00:49:28', 'Anonymous comment.', 0, '1', '', 'comment', 0, 0),
(3, 155, 'tellyworthtest2', 'tellyworth+test2@example.com', '', '', '2007-09-04 10:49:03', '2007-09-04 00:49:03', 'Contributor comment.', 0, '1', '', 'comment', 0, 0),
(4, 155, 'themedemos', 'themeshaperwp+demos@gmail.com', 'https://wpthemetestdata.wordpress.com/', '', '2007-09-04 10:48:51', '2007-09-04 17:48:51', 'Author comment.', 0, '1', '', 'comment', 0, 0),
(5, 155, 'themereviewteam', 'themereviewteam@gmail.com', '', '', '2014-12-10 01:56:24', '2014-12-10 08:56:24', 'nothing useful to say', 0, '0', '', 'comment', 3, 0),
(6, 703, 'ken', 'example@example.com', '', '', '2014-11-29 21:03:05', '2014-11-30 04:03:05', 'I want to learn how to make chinese eggrolls', 0, '0', '', 'comment', 0, 0),
(7, 1148, 'John Γιάννης Doe Κάποιος', 'example@example.org', 'http://example.org/', '', '2012-09-03 10:18:04', '2012-09-03 17:18:04', '<strong>Headings</strong>\n<h1>Header one</h1>\n<h2>Header two</h2>\n<h3>Header three</h3>\n<h4>Header four</h4>\n<h5>Header five</h5>\n<h6>Header six</h6>\n<h2>Blockquotes</h2>\nSingle line blockquote:\n<blockquote>Stay hungry. Stay foolish.</blockquote>\nMulti line blockquote with a cite reference:\n<blockquote cite=\"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote\"><p>The <strong>HTML <code>&lt;blockquote&gt;</code> Element</strong> (or <em>HTML Block Quotation Element</em>) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see <a href=\"https://developer.mozilla.org/en-US/docs/HTML/Element/blockquote#Notes\" rel=\"nofollow ugc\">Notes</a> for how to change it). A URL for the source of the quotation may be given using the <strong>cite</strong> attribute, while a text representation of the source can be given using the <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/cite\" title=\"The HTML Citation Element &lt;cite&gt; represents a reference to a creative work. It must include the title of a work or a URL reference, which may be in an abbreviated form according to the conventions used for the addition of citation metadata.\" rel=\"nofollow ugc\"><code>&lt;cite&gt;</code></a> element.</p></blockquote>\n<cite>multiple contributors</cite> - MDN HTML element reference - blockquote\n<h2>Tables</h2>\n<table>\n<tbody>\n<tr>\n<th>Employee</th>\n<th class=\"views\">Salary</th>\n<th></th>\n</tr>\n<tr class=\"odd\">\n<td><a href=\"http://example.org/\" rel=\"nofollow ugc\">John Saddington</a></td>\n<td>$1</td>\n<td>Because that\'s all Steve Job\' needed for a salary.</td>\n</tr>\n<tr class=\"even\">\n<td><a href=\"http://example.org/\" rel=\"nofollow ugc\">Tom McFarlin</a></td>\n<td>$100K</td>\n<td>For all the blogging he does.</td>\n</tr>\n<tr class=\"odd\">\n<td><a href=\"http://example.org/\" rel=\"nofollow ugc\">Jared Erickson</a></td>\n<td>$100M</td>\n<td>Pictures are worth a thousand words, right? So Tom x 1,000.</td>\n</tr>\n<tr class=\"even\">\n<td><a href=\"http://example.org/\" rel=\"nofollow ugc\">Chris Ames</a></td>\n<td>$100B</td>\n<td>With hair like that?! Enough said...</td>\n</tr>\n</tbody>\n</table>\n<h2>Definition Lists</h2>\n<dl><dt>Definition List Title</dt><dd>Definition list division.</dd><dt>Startup</dt><dd>A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.</dd><dt>#dowork</dt><dd>Coined by Rob Dyrdek and his personal body guard Christopher \"Big Black\" Boykins, \"Do Work\" works as a self motivator, to motivating your friends.</dd><dt>Do It Live</dt><dd>I\'ll let Bill O\'Reilly will <a title=\"We&#039;ll Do It Live\" href=\"https://www.youtube.com/watch?v=O_HyZ5aW76c\" rel=\"nofollow ugc\">explain</a> this one.</dd></dl>\n<h2>Unordered Lists (Nested)</h2>\n<ul>\n <li>List item one\n<ul>\n <li>List item one\n<ul>\n <li>List item one</li>\n <li>List item two</li>\n <li>List item three</li>\n <li>List item four</li>\n</ul>\n</li>\n <li>List item two</li>\n <li>List item three</li>\n <li>List item four</li>\n</ul>\n</li>\n <li>List item two</li>\n <li>List item three</li>\n <li>List item four</li>\n</ul>\n<h2>Ordered List (Nested)</h2>\n<ol start=\"8\">\n <li>List item one -start at 8\n<ol>\n <li>List item one\n<ol reversed=\"reversed\">\n <li>List item one -reversed attribute</li>\n <li>List item two</li>\n <li>List item three</li>\n <li>List item four</li>\n</ol>\n</li>\n <li>List item two</li>\n <li>List item three</li>\n <li>List item four</li>\n</ol>\n</li>\n <li>List item two</li>\n <li>List item three</li>\n <li>List item four</li>\n</ol>\n\n<h2>HTML Tags</h2>\nThese supported tags come from the WordPress.com code <a title=\"Code\" href=\"https://en.support.wordpress.com/code/\" rel=\"nofollow ugc\">FAQ</a>.\n\n<strong>Address Tag</strong>\n\n<address>1 Infinite Loop\nCup
(8, 1148, 'Anonymous User', 'fake@example.com', '', '', '2013-03-11 23:45:54', '2013-03-12 04:45:54', 'This user it trying to be anonymous.\n\n\n They used a fake email, so there should be no <a href=\"https://gravatar.com//\" title=\"Gravatar\" rel=\"nofollow ugc\">Gravatar</a> associated with it.\n They did not speify a website, so there should be no link to it in the comment.\n', 0, '1', '', 'comment', 0, 0),
(9, 1148, 'Jane Doe', 'example@example.org', 'http://example.org/', '', '2013-03-12 13:17:35', '2013-03-12 20:17:35', 'Comments? I love comments!', 0, '1', '', 'comment', 0, 0),
(10, 1148, 'John Γιανης Doe Κάποιος', 'example@example.org', 'http://example.org', '', '2013-03-14 07:53:26', '2013-03-14 14:53:26', 'These tests are amazing!', 0, '1', '', 'comment', 0, 0),
(11, 1148, 'themedemos', 'themeshaperwp+demos@gmail.com', 'https://wpthemetestdata.wordpress.com/', '', '2013-03-14 07:56:46', '2013-03-14 14:56:46', 'Author Comment.', 0, '1', '', 'comment', 0, 0),
(12, 1148, 'John Κώστας Doe Τάδε', 'example@example.org', 'http://example.org/', '', '2013-03-14 07:57:01', '2013-03-14 14:57:01', 'Comment Depth 01', 0, '1', '', 'comment', 0, 0),
(13, 1148, 'Jane Bloggs', 'example@example.org', 'http://example.org/', '', '2013-03-14 08:01:21', '2013-03-14 15:01:21', 'Comment Depth 02', 0, '1', '', 'comment', 12, 0),
(14, 1148, 'Fred Bloggs', 'example@example.org', 'http://example.org/', '', '2013-03-14 08:02:06', '2013-03-14 15:02:06', 'Comment Depth 03', 0, '1', '', 'comment', 13, 0),
(15, 1148, 'Fred Bloggs', 'example@example.org', 'http://example.org/', '', '2013-03-14 08:03:22', '2013-03-14 15:03:22', 'Comment Depth 04', 0, '1', '', 'comment', 14, 0),
(16, 1148, 'themedemos', 'themeshaperwp+demos@gmail.com', 'https://wpthemetestdata.wordpress.com/', '', '2013-03-14 08:10:29', '2013-03-14 15:10:29', 'Comment Depth 05\n\nAlso an author comment.', 0, '1', '', 'comment', 15, 0),
(17, 1148, 'Jane Bloggs', 'example@example.org', 'http://example.org/', '', '2013-03-14 08:12:16', '2013-03-14 15:12:16', 'Comment Depth 06 has some more text than some of the other comments on this post.', 0, '1', '', 'comment', 16, 0),
(18, 1148, 'Joe Bloggs', 'example@example.org', 'http://example.org/', '', '2013-03-14 08:12:58', '2013-03-14 15:12:58', 'Comment Depth 07 has a little bit.', 0, '1', '', 'comment', 17, 0),
(19, 1148, 'Jane Bloggs', 'example@example.org', 'http://example.org/', '', '2013-03-14 08:13:42', '2013-03-14 15:13:42', 'Comment Depth 08', 0, '1', '', 'comment', 18, 0),
(20, 1148, 'Joe Bloggs', 'example@example.org', 'http://example.org/', '', '2013-03-14 08:14:13', '2013-03-14 15:14:13', 'Comment Depth 09 is way nested, but there are a lot of sites with very nested comments.', 0, '1', '', 'comment', 19, 0),
(21, 1148, 'themedemos', 'themeshaperwp+demos@gmail.com', 'https://wpthemetestdata.wordpress.com/', '', '2013-03-14 08:14:47', '2013-03-14 15:14:47', 'Comment Depth 10\n\nAlso an author comment.', 0, '1', '', 'comment', 20, 0),
(22, 1148, 'Jane Doe', 'example@example.org', 'http://example.org/', '', '2013-03-14 09:56:43', '2013-03-14 16:56:43', 'Image comment.\n <img src=\"https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg?w=171&h=128\" alt=\"Albany wind-farm against the sunset, Western Australia\" />\n If the image imports...\n ', 0, '1', '', 'comment', 0, 0),
(23, 1148, 'John Μαρία Doe Ντουε', 'example@example.org', 'http://example.org/', '', '2013-03-14 11:23:24', '2013-03-14 18:23:24', 'We are totally going to blog about these tests Σίγουρα θα σχολιάσουμε τα τεστς!', 0, '1', '', 'comment', 0, 0),
(24, 1148, 'John Doe', 'example@example.org', 'http://example.org/', '', '2013-03-14 11:27:54', '2013-03-14 18:27:54', 'We use these tests all the time! Killer stuff!', 0, '1', '', 'comment', 0, 0),
(25, 1148, 'Jane Doe', 'example@example.org', 'http://example.org/', '', '2013-03-14 11:30:33', '2013-03-14 18:30:33', 'Thanks for all the comments, everyone!', 0, '1', '', 'comment', 0, 0),
(26, 1148, 'auser', 'auser@example.com', '', '', '2014-09-29 02:52:15', '2014-09-29 09:52:15', 'this is test comment\n\n Feeling testy?', 0, '0', '', 'comment', 0, 0),
(27, 1149, 'Ping 1 &laquo; What&#8217;s a tellyworth?', '', 'http://tellyworth.wordpress.com/2007/11/21/ping-1/', '', '2007-11-21 11:31:12', '2007-11-21 01:31:12', '[...] Trackback test. [...]', 0, '1', '', 'trackback', 0, 0),
(28, 1149, 'Ping 2 with a much longer title than the previous ping, which was called Ping 1 &laquo; What&#8217;s a tellyworth?', '', 'http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/', '', '2007-11-21 11:35:47', '2007-11-21 01:35:47', '[...] Another trackback test. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec hendrerit gravida nisi. Praesent libero odio, tincidunt nec, fringilla et, mollis ut, ipsum. Proin a lacus quis nisi pulvinar bibendum. Donec massa justo, dapibus at, imperdiet vestibulum, dapibus in, leo. Donec pretium tellus in dui. Phasellus tristique aliquet justo. Donec sodales. Nulla urna mi, molestie ac, malesuada sit amet, sagittis id, lacus. Mauris auctor leo ac justo. Proin convallis. Nulla eleifend dictum mi. Donec at lectus. Integer augue sapien, ornare vitae, rhoncus quis, rhoncus sed, sapien. Nunc mattis diam sodales diam.Etiam porttitor, ante sed varius semper, ante arcu rutrum tortor, at luctus nunc urna id nibh. Fusce sodales. Integer sed ligula. Donec posuere, nibh aliquet auctor congue, augue est porttitor odio, imperdiet facilisis tortor urna vel mauris. Pellentesque pretium, lorem non pellentesque varius, elit diam ultrices mi, sed posuere sapien lectus sed mi. Donec vestibulum urna. Donec gravida elit et enim. Ut dignissim neque ut erat. Morbi tincidunt nunc vitae lorem. Morbi rhoncus mi. Praesent facilisis tincidunt enim. Ut pulvinar. Suspendisse potenti. Vivamus turpis odio, porta at, malesuada in, iaculis eget, odio. Aenean faucibus, urna quis congue dignissim, orci tellus ornare leo, eget viverra ante ipsum sit amet magna. Suspendisse mattis nunc at justo. Nullam malesuada lobortis lorem. Morbi ultricies. Nam risus erat, sagittis ut, tristique rhoncus, luctus id, ante. Maecenas ac dui. [...]', 0, '1', '', 'trackback', 0, 0),
(29, 1149, 'Ping 4 &laquo; What&#8217;s a tellyworth?', '', 'http://tellyworth.wordpress.com/2007/11/21/ping-4/', '', '2007-11-21 11:39:25', '2007-11-21 01:39:25', '[...] Another short one. [...]', 0, '1', '', 'pingback', 0, 0),
(30, 1149, 'Ping 3 &laquo; What&#8217;s a tellyworth?', '', 'http://tellyworth.wordpress.com/2007/11/21/ping-3/', '', '2007-11-21 11:38:22', '2007-11-21 01:38:22', '[...] Just a short one. [...]', 0, '1', '', 'pingback', 0, 0),
(31, 1149, 'John Doe', 'example@example.org', 'http://example.org/', '', '2010-06-11 15:27:04', '2010-06-11 22:27:04', 'This is a comment amongst pingbacks and trackbacks.', 0, '1', '', 'comment', 0, 0),
(32, 1168, 'Jane Doe', 'example@example.org', 'http://example.org/', '', '2013-03-14 11:56:08', '2013-03-14 18:56:08', 'This comment should not be visible until the password is entered.', 0, '1', '', 'comment', 0, 0),
(33, 1170, 'John Doe', 'example@example.org', 'http://example.org/', '', '2013-03-14 12:35:07', '2013-03-14 19:35:07', 'Having no content in the post should have no adverse effects on the layout or functionality.', 0, '1', '', 'comment', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `perf_links`
--
CREATE TABLE `perf_links` (
`link_id` bigint UNSIGNED NOT NULL,
`link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_520_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) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `perf_options`
--
CREATE TABLE `perf_options` (
`option_id` bigint UNSIGNED NOT NULL,
`option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `perf_options`
--
INSERT INTO `perf_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://localhost:8080/wordpress', 'yes'),
(2, 'home', 'http://localhost:8080/wordpress', 'yes'),
(3, 'blogname', 'Satish Gandhams Test Site', 'yes'),
(4, 'blogdescription', 'Just another WordPress site', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', 'satish.iitg@gmail.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', '0', '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', '/%year%/%monthnum%/%day%/%postname%/', 'yes'),
(29, 'rewrite_rules', 'a:94:{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: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=$ma
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:1:{i:0;s:41:\"wordpress-importer/wordpress-importer.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', 'twentytwentyone', 'yes'),
(41, 'stylesheet', 'twentytwentyone', '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', '49752', 'yes'),
(47, 'uploads_use_yearmonth_folders', '1', 'yes'),
(48, 'upload_path', '', 'yes'),
(49, 'blog_public', '0', '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:1:{i:0;i:1241;}', 'yes'),
(76, 'widget_categories', 'a:0:{}', 'yes'),
(77, 'widget_text', 'a:0:{}', 'yes'),
(78, 'widget_rss', 'a:0:{}', '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', '1658571412', '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', '49752', 'yes'),
(100, 'perf_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, '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'),
(103, 'sidebars_widgets', 'a:4:{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\";}s:13:\"array_version\";i:3;}', 'yes'),
(104, 'cron', 'a:8:{i:1643023012;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:1643062612;a:4:{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;}}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:1643105812;a:2:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1643105827;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:1643105829;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:1643105881;a:1:{s:26:\"importer_scheduled_cleanup\";a:1:{s:32:\"c9059feef497c200e69cb9956a81f005\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:5;}}}}i:1893499218;a:1:{s:19:\"publish_future_post\";a:1:{s:32:\"53e45760b4285163a94322f2b432f7d3\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1153;}}}}s:7:\"version\";i:2;}', 'yes'),
(105, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(106, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(107, 'widget_archives', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(108, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(109, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(110, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(111, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(112, 'widget_meta', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(113, 'widget_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(114, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(115, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(116, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(118, 'recovery_keys', 'a:0:{}', 'yes'),
(119, 'https_detection_errors', 'a:1:{s:20:\"https_request_failed\";a:1:{i:0;s:21:\"HTTPS request failed.\";}}', 'yes'),
(120, '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.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-5.8.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.8.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.8.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.8.3\";s:7:\"version\";s:5:\"5.8.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1643019413;s:15:\"version_checked\";s:5:\"5.8.3\";s:12:\"translations\";a:0:{}}', 'no'),
(121, 'theme_mods_twentytwentyone', 'a:1:{s:18:\"custom_css_post_id\";i:-1;}', 'yes'),
(124, '_site_transient_timeout_theme_roots', '1643021214', 'no'),
(125, '_site_transient_theme_roots', 'a:3:{s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";}', 'no'),
(126, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1643019447;s:7:\"checked\";a:3:{s:14:\"twentynineteen\";s:3:\"2.1\";s:12:\"twentytwenty\";s:3:\"1.8\";s:15:\"twentytwentyone\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:3:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.1.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:\"1.8\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.8.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.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.4.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}', 'no'),
(127, '_site_transient_timeout_browser_fc661a25971afd52f7714fe88867b744', '1643624228', 'no'),
(128, '_site_transient_browser_fc661a25971afd52f7714fe88867b744', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"97.0.4692.71\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'no'),
(129, '_site_transient_timeout_php_check_d564ef3bc004ad591bb7443752129422', '1643624229', 'no'),
(130, '_site_transient_php_check_d564ef3bc004ad591bb7443752129422', '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'),
(132, 'recently_activated', 'a:0:{}', 'yes'),
(133, 'can_compress_scripts', '1', 'no'),
(134, '_site_transient_timeout_popular_importers_088c2da9168f08a63df4000f5ff16d70', '1643192239', 'no'),
(135, '_site_transient_popular_importers_088c2da9168f08a63df4000f5ff16d70', 'a:2:{s:9:\"importers\";a:7:{s:7:\"blogger\";a:4:{s:4:\"name\";s:7:\"Blogger\";s:11:\"description\";s:54:\"Import posts, comments, and users from a Blogger blog.\";s:11:\"plugin-slug\";s:16:\"blogger-importer\";s:11:\"importer-id\";s:7:\"blogger\";}s:9:\"wpcat2tag\";a:4:{s:4:\"name\";s:29:\"Categories and Tags Converter\";s:11:\"description\";s:71:\"Convert existing categories to tags or tags to categories, selectively.\";s:11:\"plugin-slug\";s:18:\"wpcat2tag-importer\";s:11:\"importer-id\";s:10:\"wp-cat2tag\";}s:11:\"livejournal\";a:4:{s:4:\"name\";s:11:\"LiveJournal\";s:11:\"description\";s:46:\"Import posts from LiveJournal using their API.\";s:11:\"plugin-slug\";s:20:\"livejournal-importer\";s:11:\"importer-id\";s:11:\"livejournal\";}s:11:\"movabletype\";a:4:{s:4:\"name\";s:24:\"Movable Type and TypePad\";s:11:\"description\";s:62:\"Import posts and comments from a Movable Type or TypePad blog.\";s:11:\"plugin-slug\";s:20:\"movabletype-importer\";s:11:\"importer-id\";s:2:\"mt\";}s:3:\"rss\";a:4:{s:4:\"name\";s:3:\"RSS\";s:11:\"description\";s:30:\"Import posts from an RSS feed.\";s:11:\"plugin-slug\";s:12:\"rss-importer\";s:11:\"importer-id\";s:3:\"rss\";}s:6:\"tumblr\";a:4:{s:4:\"name\";s:6:\"Tumblr\";s:11:\"description\";s:53:\"Import posts &amp; media from Tumblr using their API.\";s:11:\"plugin-slug\";s:15:\"tumblr-importer\";s:11:\"importer-id\";s:6:\"tumblr\";}s:9:\"wordpress\";a:4:{s:4:\"name\";s:9:\"WordPress\";s:11:\"description\";s:96:\"Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.\";s:11:\"plugin-slug\";s:18:\"wordpress-importer\";s:11:\"importer-id\";s:9:\"wordpress\";}}s:10:\"translated\";b:0;}', 'no'),
(137, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1643019475;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.2.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.2.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s: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:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/wordpress-importer\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:3:\"0.7\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wordpress-importer.0.7.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:71:\"https://ps.w.org/wordpress-importer/assets/icon-256x256.png?rev=1908375\";s:2:\"1x\";s:63:\"https://ps.w.org/wordpress-importer/assets/icon.svg?rev=1908375\";s:3:\"svg\";s:63:\"https://ps.w.org/wordpress-importer/assets/icon.svg?rev=1908375\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-importer/assets/banner-772x250.png?rev=547654\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.7\";}}s:7:\"checked\";a:3:{s:19:\"akismet/akismet.php\";s:5:\"4.2.1\";s:9:\"hello.php\";s:5:\"1.7.2\";s:41:\"wordpress-importer/wordpress-importer.php\";s:3:\"0.7\";}}', 'no'),
(140, 'finished_updating_comment_type', '1', 'yes'),
(142, 'category_children', 'a:6:{i:2;a:1:{i:0;i:48;}i:37;a:1:{i:0;i:59;}i:59;a:1:{i:0;i:60;}i:38;a:5:{i:0;i:61;i:1;i:62;i:2;i:63;i:3;i:64;i:4;i:65;}i:26;a:1:{i:0;i:66;}i:63;a:1:{i:0;i:67;}}', 'yes'),
(145, '_site_transient_timeout_community-events-d41d8cd98f00b204e9800998ecf8427e', '1643062715', 'no'),
(146, '_site_transient_community-events-d41d8cd98f00b204e9800998ecf8427e', 'a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";b:0;}s:6:\"events\";a:0:{}}', 'no'),
(147, '_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3', '1643062716', 'no');
INSERT INTO `perf_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(148, '_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3', 'a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:79:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"News WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jan 2022 22:28:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.0-alpha-52622\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:20:{i:0;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 5.9 RC3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2022/01/wordpress-5-9-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jan 2022 22:28:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12050\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Download to test the third Release Candidate (RC3) for WordPress 5.9.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4760:\"\n<p>The third <a href=\"https://make.wordpress.org/core/handbook/glossary/#rc\">Release Candidate</a> (RC3) for <a href=\"https://make.wordpress.org/core/5-9/\">WordPress 5.9</a> is here!</p>\n\n\n\n<p>Thank you to everyone who has contributed thus far toward testing and filing bugs to help make WordPress 5.9 a great release. <strong>WordP
INSERT INTO `perf_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(149, '_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1643062716', 'no'),
(150, '_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1643019516', 'no'),
(151, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1643062718', 'no');
INSERT INTO `perf_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(152, '_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9', 'a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"Gutenberg Times: 42 Block Themes, Developer Hours and Plugins for the block editor — Weekend Edition #200\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=20093\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://gutenbergtimes.com/42-block-themes-developer-hours-and-plugins-for-the-block-editor-weekend-edition-200/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23182:\"<p>Well, who would have thunk when I started the newsletter in 2018, that I will still be doing it four years later. Welcome to the 200th edition! A huge &#8220;Thank you&#8221; to you, dear reader, for browsing and reading it week after week. </p>\n\n\n\n<p>I am also deeply grateful for the contributors working on the block editor and the theme and plugin developers building on top of it. I am an absolute fan and love to be a scribe of your work and art. And there are others in the community who write, test, and build sites with it. All your encouragement, tips, news and conversations, make working on this newsletter an absolute pleasure.</p>\n\n\n\n<p>Besides the weekend editions, we also publish other articles. There might be more in the future, too. Let me point you to two here. </p>\n\n\n\n<p>Don&#8217;t miss Anne McCarthy&#8217;s article <a href=\"https://gutenbergtimes.com/how-5-9-creates-a-strong-foundation-for-the-future/\"><strong>How 5.9 creates a strong foundation for the future</strong></a>. She wrote about the various features the developers are working on and how to participate in the process.</p>\n\n\n\n<p>As a reminder, I list here the <a href=\"https://gutenbergtimes.com/whats-new-in-wordpress-5-9-a-reading-list-on-full-site-editing-and-block-themes/\"><strong>WordPress 5.9 Reading list for FSE and Block Themes.</strong></a> </p>\n\n\n\n<p>And now I get out of the way to the rest of the Gutenberg news. Have a great weekend, </p>\n\n\n\n<p>Yours, 💕<br />Birgit </p>\n\n\n\n<p>PS: Last Monday, I was having great fun with the members at the <a href=\"https://www.meetup.com/BoulderWP/events/282792359\">WordPress Meetup in Boulder </a>on a panel with Brian Gardner and Courtney Rob
INSERT INTO `perf_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(153, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1643062718', 'no'),
(154, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1643019518', 'no'),
(155, '_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b', '1643062718', 'no'),
(156, '_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b', '<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/01/wordpress-5-9-rc3/\'>WordPress 5.9 RC3</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/01/episode-23-a-letter-from-wordpress-executive-director/\'>WP Briefing: Episode 23: A letter from WordPress Executive Director</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://gutenbergtimes.com/42-block-themes-developer-hours-and-plugins-for-the-block-editor-weekend-edition-200/\'>Gutenberg Times: 42 Block Themes, Developer Hours and Plugins for the block editor — Weekend Edition #200</a></li><li><a class=\'rsswidget\' href=\'https://gutenbergtimes.com/podcast/gutenberg-changelog-59-extensibility-of-the-block-editor/\'>Gutenberg Times: Gutenberg Changelog #59 Gutenberg 12.4, Developer Hours, Extensibility of the Block Editor and more</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wp-career-summit-opens-registration-calls-for-speakers-and-sponsors?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wp-career-summit-opens-registration-calls-for-speakers-and-sponsors\'>WPTavern: WP Career Summit Opens Registration, Calls for Speakers and Sponsors</a></li></ul></div>', 'no');
-- --------------------------------------------------------
--
-- Table structure for table `perf_postmeta`
--
CREATE TABLE `perf_postmeta` (
`meta_id` bigint UNSIGNED NOT NULL,
`post_id` bigint UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `perf_postmeta`
--
INSERT INTO `perf_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default'),
(5, 1726, '_menu_item_type', 'custom'),
(6, 1726, '_menu_item_menu_item_parent', '0'),
(7, 1726, '_menu_item_object_id', '1726'),
(8, 1726, '_menu_item_object', 'custom'),
(9, 1726, '_menu_item_target', ''),
(10, 1726, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(11, 1726, '_menu_item_xfn', ''),
(12, 1726, '_menu_item_url', '#'),
(13, 1727, '_menu_item_type', 'custom'),
(14, 1727, '_menu_item_menu_item_parent', '0'),
(15, 1727, '_menu_item_object_id', '1727'),
(16, 1727, '_menu_item_object', 'custom'),
(17, 1727, '_menu_item_target', ''),
(18, 1727, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(19, 1727, '_menu_item_xfn', ''),
(20, 1727, '_menu_item_url', '#'),
(21, 1728, '_menu_item_type', 'taxonomy'),
(22, 1728, '_menu_item_menu_item_parent', '1727'),
(23, 1728, '_menu_item_object_id', '31'),
(24, 1728, '_menu_item_object', 'category'),
(25, 1728, '_menu_item_target', ''),
(26, 1728, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(27, 1728, '_menu_item_xfn', ''),
(28, 1728, '_menu_item_url', ''),
(29, 1729, '_menu_item_type', 'taxonomy'),
(30, 1729, '_menu_item_menu_item_parent', '1727'),
(31, 1729, '_menu_item_object_id', '136'),
(32, 1729, '_menu_item_object', 'category'),
(33, 1729, '_menu_item_target', ''),
(34, 1729, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(35, 1729, '_menu_item_xfn', ''),
(36, 1729, '_menu_item_url', ''),
(37, 1730, '_menu_item_type', 'taxonomy'),
(38, 1730, '_menu_item_menu_item_parent', '1727'),
(39, 1730, '_menu_item_object_id', '52'),
(40, 1730, '_menu_item_object', 'category'),
(41, 1730, '_menu_item_target', ''),
(42, 1730, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(43, 1730, '_menu_item_xfn', ''),
(44, 1730, '_menu_item_url', ''),
(45, 1731, '_menu_item_type', 'custom'),
(46, 1731, '_menu_item_menu_item_parent', '0'),
(47, 1731, '_menu_item_object_id', '1731'),
(48, 1731, '_menu_item_object', 'custom'),
(49, 1731, '_menu_item_target', ''),
(50, 1731, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(51, 1731, '_menu_item_xfn', ''),
(52, 1731, '_menu_item_url', '#'),
(53, 1732, '_menu_item_type', 'custom'),
(54, 1732, '_menu_item_menu_item_parent', '1731'),
(55, 1732, '_menu_item_object_id', '1732'),
(56, 1732, '_menu_item_object', 'custom'),
(57, 1732, '_menu_item_target', ''),
(58, 1732, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(59, 1732, '_menu_item_xfn', ''),
(60, 1732, '_menu_item_url', '#'),
(61, 1733, '_menu_item_type', 'custom'),
(62, 1733, '_menu_item_menu_item_parent', '1732'),
(63, 1733, '_menu_item_object_id', '1733'),
(64, 1733, '_menu_item_object', 'custom'),
(65, 1733, '_menu_item_target', ''),
(66, 1733, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(67, 1733, '_menu_item_xfn', ''),
(68, 1733, '_menu_item_url', '#'),
(69, 1734, '_menu_item_type', 'custom'),
(70, 1734, '_menu_item_menu_item_parent', '1733'),
(71, 1734, '_menu_item_object_id', '1734'),
(72, 1734, '_menu_item_object', 'custom'),
(73, 1734, '_menu_item_target', ''),
(74, 1734, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(75, 1734, '_menu_item_xfn', ''),
(76, 1734, '_menu_item_url', '#'),
(77, 1735, '_menu_item_type', 'custom'),
(78, 1735, '_menu_item_menu_item_parent', '1734'),
(79, 1735, '_menu_item_object_id', '1735'),
(80, 1735, '_menu_item_object', 'custom'),
(81, 1735, '_menu_item_target', ''),
(82, 1735, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(83, 1735, '_menu_item_xfn', ''),
(84, 1735, '_menu_item_url', '#'),
(85, 1736, '_menu_item_type', 'custom'),
(86, 1736, '_menu_item_menu_item_parent', '1735'),
(87, 1736, '_menu_item_object_id', '1736'),
(88, 1736, '_menu_item_object', 'custom'),
(89, 1736, '_menu_item_target', ''),
(90, 1736, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(91, 1736, '_menu_item_xfn', ''),
(92, 1736, '_menu_item_url', '#'),
(93, 1737, '_menu_item_type', 'custom'),
(94, 1737, '_menu_item_menu_item_parent', '1736'),
(95, 1737, '_menu_item_object_id', '1737'),
(96, 1737, '_menu_item_object', 'custom'),
(97, 1737, '_menu_item_target', ''),
(98, 1737, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(99, 1737, '_menu_item_xfn', ''),
(100, 1737, '_menu_item_url', '#'),
(101, 1738, '_menu_item_type', 'custom'),
(102, 1738, '_menu_item_menu_item_parent', '1737'),
(103, 1738, '_menu_item_object_id', '1738'),
(104, 1738, '_menu_item_object', 'custom'),
(105, 1738, '_menu_item_target', ''),
(106, 1738, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(107, 1738, '_menu_item_xfn', ''),
(108, 1738, '_menu_item_url', '#'),
(109, 1739, '_menu_item_type', 'custom'),
(110, 1739, '_menu_item_menu_item_parent', '1738'),
(111, 1739, '_menu_item_object_id', '1739'),
(112, 1739, '_menu_item_object', 'custom'),
(113, 1739, '_menu_item_target', ''),
(114, 1739, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(115, 1739, '_menu_item_xfn', ''),
(116, 1739, '_menu_item_url', '#'),
(117, 1740, '_menu_item_type', 'custom'),
(118, 1740, '_menu_item_menu_item_parent', '1739'),
(119, 1740, '_menu_item_object_id', '1740'),
(120, 1740, '_menu_item_object', 'custom'),
(121, 1740, '_menu_item_target', ''),
(122, 1740, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(123, 1740, '_menu_item_xfn', ''),
(124, 1740, '_menu_item_url', '#'),
(125, 1741, '_menu_item_type', 'custom'),
(126, 1741, '_menu_item_menu_item_parent', '1740'),
(127, 1741, '_menu_item_object_id', '1741'),
(128, 1741, '_menu_item_object', 'custom'),
(129, 1741, '_menu_item_target', ''),
(130, 1741, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(131, 1741, '_menu_item_xfn', ''),
(132, 1741, '_menu_item_url', '#'),
(133, 1742, '_menu_item_type', 'custom'),
(134, 1742, '_menu_item_menu_item_parent', '0'),
(135, 1742, '_menu_item_object_id', '1742'),
(136, 1742, '_menu_item_object', 'custom'),
(137, 1742, '_menu_item_target', ''),
(138, 1742, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(139, 1742, '_menu_item_xfn', ''),
(140, 1742, '_menu_item_url', '#'),
(141, 1743, '_menu_item_type', 'custom'),
(142, 1743, '_menu_item_menu_item_parent', '0'),
(143, 1743, '_menu_item_object_id', '1743'),
(144, 1743, '_menu_item_object', 'custom'),
(145, 1743, '_menu_item_target', ''),
(146, 1743, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(147, 1743, '_menu_item_xfn', ''),
(148, 1743, '_menu_item_url', '#'),
(149, 1744, '_menu_item_type', 'custom'),
(150, 1744, '_menu_item_menu_item_parent', '1742'),
(151, 1744, '_menu_item_object_id', '1744'),
(152, 1744, '_menu_item_object', 'custom'),
(153, 1744, '_menu_item_target', ''),
(154, 1744, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(155, 1744, '_menu_item_xfn', ''),
(156, 1744, '_menu_item_url', '#'),
(157, 1745, '_menu_item_type', 'custom'),
(158, 1745, '_menu_item_menu_item_parent', '1742'),
(159, 1745, '_menu_item_object_id', '1745'),
(160, 1745, '_menu_item_object', 'custom'),
(161, 1745, '_menu_item_target', ''),
(162, 1745, '_menu_item_classes', 'a:1:{i:0;s:21:\"custom-menu-css-class\";}'),
(163, 1745, '_menu_item_xfn', ''),
(164, 1745, '_menu_item_url', '#'),
(165, 1746, '_menu_item_type', 'custom'),
(166, 1746, '_menu_item_menu_item_parent', '1742'),
(167, 1746, '_menu_item_object_id', '1746'),
(168, 1746, '_menu_item_object', 'custom'),
(169, 1746, '_menu_item_target', '_blank'),
(170, 1746, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(171, 1746, '_menu_item_xfn', ''),
(172, 1746, '_menu_item_url', 'https://wordpressfoundation.org/'),
(173, 1747, '_menu_item_type', 'custom'),
(174, 1747, '_menu_item_menu_item_parent', '0'),
(175, 1747, '_menu_item_object_id', '1747'),
(176, 1747, '_menu_item_object', 'custom'),
(177, 1747, '_menu_item_target', ''),
(178, 1747, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(179, 1747, '_menu_item_xfn', ''),
(180, 1747, '_menu_item_url', 'https://twitter.com/wordpress'),
(181, 1748, '_menu_item_type', 'custom'),
(182, 1748, '_menu_item_menu_item_parent', '0'),
(183, 1748, '_menu_item_object_id', '1748'),
(184, 1748, '_menu_item_object', 'custom'),
(185, 1748, '_menu_item_target', ''),
(186, 1748, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(187, 1748, '_menu_item_xfn', ''),
(188, 1748, '_menu_item_url', 'https://www.facebook.com/WordPress/'),
(189, 1749, '_menu_item_type', 'custom'),
(190, 1749, '_menu_item_menu_item_parent', '0'),
(191, 1749, '_menu_item_object_id', '1749'),
(192, 1749, '_menu_item_object', 'custom'),
(193, 1749, '_menu_item_target', ''),
(194, 1749, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(195, 1749, '_menu_item_xfn', ''),
(196, 1749, '_menu_item_url', 'https://github.com/WordPress/'),
(197, 1750, '_menu_item_type', 'custom'),
(198, 1750, '_menu_item_menu_item_parent', '0'),
(199, 1750, '_menu_item_object_id', '1750'),
(200, 1750, '_menu_item_object', 'custom'),
(201, 1750, '_menu_item_target', ''),
(202, 1750, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(203, 1750, '_menu_item_xfn', ''),
(204, 1750, '_menu_item_url', 'https://www.instagram.com/photomatt/'),
(205, 1751, '_menu_item_type', 'custom'),
(206, 1751, '_menu_item_menu_item_parent', '0'),
(207, 1751, '_menu_item_object_id', '1751'),
(208, 1751, '_menu_item_object', 'custom'),
(209, 1751, '_menu_item_target', ''),
(210, 1751, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(211, 1751, '_menu_item_xfn', ''),
(212, 1751, '_menu_item_url', 'https://www.linkedin.com/company/wordpress/'),
(213, 1752, '_menu_item_type', 'post_type'),
(214, 1752, '_menu_item_menu_item_parent', '0'),
(215, 1752, '_menu_item_object_id', '703'),
(216, 1752, '_menu_item_object', 'page'),
(217, 1752, '_menu_item_target', ''),
(218, 1752, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(219, 1752, '_menu_item_xfn', ''),
(220, 1752, '_menu_item_url', ''),
(221, 1753, '_menu_item_type', 'post_type'),
(222, 1753, '_menu_item_menu_item_parent', '0'),
(223, 1753, '_menu_item_object_id', '1725'),
(224, 1753, '_menu_item_object', 'page'),
(225, 1753, '_menu_item_target', ''),
(226, 1753, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(227, 1753, '_menu_item_xfn', ''),
(228, 1753, '_menu_item_url', ''),
(229, 1754, '_menu_item_type', 'post_type'),
(230, 1754, '_menu_item_menu_item_parent', '1753'),
(231, 1754, '_menu_item_object_id', '501'),
(232, 1754, '_menu_item_object', 'page'),
(233, 1754, '_menu_item_target', ''),
(234, 1754, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(235, 1754, '_menu_item_xfn', ''),
(236, 1754, '_menu_item_url', ''),
(237, 1755, '_menu_item_type', 'post_type'),
(238, 1755, '_menu_item_menu_item_parent', '1753'),
(239, 1755, '_menu_item_object_id', '155'),
(240, 1755, '_menu_item_object', 'page'),
(241, 1755, '_menu_item_target', ''),
(242, 1755, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(243, 1755, '_menu_item_xfn', ''),
(244, 1755, '_menu_item_url', ''),
(245, 1756, '_menu_item_type', 'post_type'),
(246, 1756, '_menu_item_menu_item_parent', '1753'),
(247, 1756, '_menu_item_object_id', '156'),
(248, 1756, '_menu_item_object', 'page'),
(249, 1756, '_menu_item_target', ''),
(250, 1756, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(251, 1756, '_menu_item_xfn', ''),
(252, 1756, '_menu_item_url', ''),
(253, 1757, '_menu_item_type', 'post_type'),
(254, 1757, '_menu_item_menu_item_parent', '0'),
(255, 1757, '_menu_item_object_id', '146'),
(256, 1757, '_menu_item_object', 'page'),
(257, 1757, '_menu_item_target', ''),
(258, 1757, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(259, 1757, '_menu_item_xfn', ''),
(260, 1757, '_menu_item_url', ''),
(261, 1758, '_menu_item_type', 'post_type'),
(262, 1758, '_menu_item_menu_item_parent', '0'),
(263, 1758, '_menu_item_object_id', '703'),
(264, 1758, '_menu_item_object', 'page'),
(265, 1758, '_menu_item_target', ''),
(266, 1758, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(267, 1758, '_menu_item_xfn', ''),
(268, 1758, '_menu_item_url', ''),
(269, 1759, '_menu_item_type', 'post_type'),
(270, 1759, '_menu_item_menu_item_parent', '0'),
(271, 1759, '_menu_item_object_id', '701'),
(272, 1759, '_menu_item_object', 'page'),
(273, 1759, '_menu_item_target', ''),
(274, 1759, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(275, 1759, '_menu_item_xfn', ''),
(276, 1759, '_menu_item_url', ''),
(277, 1760, '_menu_item_type', 'post_type'),
(278, 1760, '_menu_item_menu_item_parent', '0'),
(279, 1760, '_menu_item_object_id', '1725'),
(280, 1760, '_menu_item_object', 'page'),
(281, 1760, '_menu_item_target', ''),
(282, 1760, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(283, 1760, '_menu_item_xfn', ''),
(284, 1760, '_menu_item_url', ''),
(285, 1761, '_menu_item_type', 'post_type'),
(286, 1761, '_menu_item_menu_item_parent', '0'),
(287, 1761, '_menu_item_object_id', '501'),
(288, 1761, '_menu_item_object', 'page'),
(289, 1761, '_menu_item_target', ''),
(290, 1761, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(291, 1761, '_menu_item_xfn', ''),
(292, 1761, '_menu_item_url', ''),
(293, 1762, '_menu_item_type', 'post_type'),
(294, 1762, '_menu_item_menu_item_parent', '0'),
(295, 1762, '_menu_item_object_id', '155'),
(296, 1762, '_menu_item_object', 'page'),
(297, 1762, '_menu_item_target', ''),
(298, 1762, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(299, 1762, '_menu_item_xfn', ''),
(300, 1762, '_menu_item_url', ''),
(301, 1763, '_menu_item_type', 'post_type'),
(302, 1763, '_menu_item_menu_item_parent', '0'),
(303, 1763, '_menu_item_object_id', '156'),
(304, 1763, '_menu_item_object', 'page'),
(305, 1763, '_menu_item_target', ''),
(306, 1763, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(307, 1763, '_menu_item_xfn', ''),
(308, 1763, '_menu_item_url', ''),
(309, 1764, '_menu_item_type', 'post_type'),
(310, 1764, '_menu_item_menu_item_parent', '0'),
(311, 1764, '_menu_item_object_id', '174'),
(312, 1764, '_menu_item_object', 'page'),
(313, 1764, '_menu_item_target', ''),
(314, 1764, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(315, 1764, '_menu_item_xfn', ''),
(316, 1764, '_menu_item_url', ''),
(317, 1765, '_menu_item_type', 'post_type'),
(318, 1765, '_menu_item_menu_item_parent', '0'),
(319, 1765, '_menu_item_object_id', '173'),
(320, 1765, '_menu_item_object', 'page'),
(321, 1765, '_menu_item_target', ''),
(322, 1765, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(323, 1765, '_menu_item_xfn', ''),
(324, 1765, '_menu_item_url', ''),
(325, 1766, '_menu_item_type', 'post_type'),
(326, 1766, '_menu_item_menu_item_parent', '0'),
(327, 1766, '_menu_item_object_id', '172'),
(328, 1766, '_menu_item_object', 'page'),
(329, 1766, '_menu_item_target', ''),
(330, 1766, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(331, 1766, '_menu_item_xfn', ''),
(332, 1766, '_menu_item_url', ''),
(333, 1767, '_menu_item_type', 'post_type'),
(334, 1767, '_menu_item_menu_item_parent', '0'),
(335, 1767, '_menu_item_object_id', '146'),
(336, 1767, '_menu_item_object', 'page'),
(337, 1767, '_menu_item_target', ''),
(338, 1767, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(339, 1767, '_menu_item_xfn', ''),
(340, 1767, '_menu_item_url', ''),
(341, 1768, '_menu_item_type', 'post_type'),
(342, 1768, '_menu_item_menu_item_parent', '0'),
(343, 1768, '_menu_item_object_id', '703'),
(344, 1768, '_menu_item_object', 'page'),
(345, 1768, '_menu_item_target', ''),
(346, 1768, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(347, 1768, '_menu_item_xfn', ''),
(348, 1768, '_menu_item_url', ''),
(349, 1769, '_menu_item_type', 'post_type'),
(350, 1769, '_menu_item_menu_item_parent', '0'),
(351, 1769, '_menu_item_object_id', '701'),
(352, 1769, '_menu_item_object', 'page'),
(353, 1769, '_menu_item_target', ''),
(354, 1769, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(355, 1769, '_menu_item_xfn', ''),
(356, 1769, '_menu_item_url', ''),
(357, 1770, '_menu_item_type', 'post_type'),
(358, 1770, '_menu_item_menu_item_parent', '0'),
(359, 1770, '_menu_item_object_id', '1725'),
(360, 1770, '_menu_item_object', 'page'),
(361, 1770, '_menu_item_target', ''),
(362, 1770, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(363, 1770, '_menu_item_xfn', ''),
(364, 1770, '_menu_item_url', ''),
(365, 1771, '_menu_item_type', 'post_type'),
(366, 1771, '_menu_item_menu_item_parent', '1770'),
(367, 1771, '_menu_item_object_id', '501'),
(368, 1771, '_menu_item_object', 'page'),
(369, 1771, '_menu_item_target', ''),
(370, 1771, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(371, 1771, '_menu_item_xfn', ''),
(372, 1771, '_menu_item_url', ''),
(373, 1772, '_menu_item_type', 'post_type'),
(374, 1772, '_menu_item_menu_item_parent', '1770'),
(375, 1772, '_menu_item_object_id', '155'),
(376, 1772, '_menu_item_object', 'page'),
(377, 1772, '_menu_item_target', ''),
(378, 1772, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(379, 1772, '_menu_item_xfn', ''),
(380, 1772, '_menu_item_url', ''),
(381, 1773, '_menu_item_type', 'post_type'),
(382, 1773, '_menu_item_menu_item_parent', '1770'),
(383, 1773, '_menu_item_object_id', '156'),
(384, 1773, '_menu_item_object', 'page'),
(385, 1773, '_menu_item_target', ''),
(386, 1773, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(387, 1773, '_menu_item_xfn', ''),
(388, 1773, '_menu_item_url', ''),
(389, 1774, '_menu_item_type', 'post_type'),
(390, 1774, '_menu_item_menu_item_parent', '0'),
(391, 1774, '_menu_item_object_id', '174'),
(392, 1774, '_menu_item_object', 'page'),
(393, 1774, '_menu_item_target', ''),
(394, 1774, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(395, 1774, '_menu_item_xfn', ''),
(396, 1774, '_menu_item_url', ''),
(397, 1775, '_menu_item_type', 'post_type'),
(398, 1775, '_menu_item_menu_item_parent', '1774'),
(399, 1775, '_menu_item_object_id', '173'),
(400, 1775, '_menu_item_object', 'page'),
(401, 1775, '_menu_item_target', ''),
(402, 1775, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(403, 1775, '_menu_item_xfn', ''),
(404, 1775, '_menu_item_url', ''),
(405, 1776, '_menu_item_type', 'post_type'),
(406, 1776, '_menu_item_menu_item_parent', '1775'),
(407, 1776, '_menu_item_object_id', '172'),
(408, 1776, '_menu_item_object', 'page'),
(409, 1776, '_menu_item_target', ''),
(410, 1776, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(411, 1776, '_menu_item_xfn', ''),
(412, 1776, '_menu_item_url', ''),
(413, 1777, '_menu_item_type', 'post_type'),
(414, 1777, '_menu_item_menu_item_parent', '0'),
(415, 1777, '_menu_item_object_id', '146'),
(416, 1777, '_menu_item_object', 'page'),
(417, 1777, '_menu_item_target', ''),
(418, 1777, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(419, 1777, '_menu_item_xfn', ''),
(420, 1777, '_menu_item_url', ''),
(421, 582, '_oembed_4321638fc1a6fee26443f7fe8a70a871', '<embed src=\"http://v.wordpress.com/hrPKeL5t\" type=\"application/x-shockwave-flash\" width=\"500\" height=\"281\" allowscriptaccess=\"always\" allowfullscreen=\"true\" wmode=\"transparent\"></embed>'),
(422, 582, '_oembed_29351fff85c1be1d1e9a965a0332a861', '<div class=\"embed-\"><embed src=\"http://v.wordpress.com/hrPKeL5t\" type=\"application/x-shockwave-flash\" width=\"604\" height=\"339\" allowscriptaccess=\"always\" allowfullscreen=\"true\" wmode=\"transparent\"></embed></div>'),
(423, 582, '_oembed_9fcc86d7d9398ff736577f922307f64d', '<div class=\"embed-\"><embed src=\"http://v.wordpress.com/hrPKeL5t\" type=\"application/x-shockwave-flash\" width=\"808\" height=\"454\" allowscriptaccess=\"always\" allowfullscreen=\"true\" wmode=\"transparent\"></embed></div>'),
(424, 582, '_oembed_366237792d32461d0052efb2edec37f5', '<div class=\"embed-\"><embed src=\"http://v.wordpress.com/hrPKeL5t\" type=\"application/x-shockwave-flash\" width=\"584\" height=\"328\" allowscriptaccess=\"always\" allowfullscreen=\"true\" wmode=\"transparent\"></embed></div>'),
(425, 582, '_oembed_37fdfe862c13c46a93be2921279bf675', '<div class=\"embed-\"><embed src=\"http://v.wordpress.com/hrPKeL5t\" type=\"application/x-shockwave-flash\" width=\"599\" height=\"336\" allowscriptaccess=\"always\" allowfullscreen=\"true\" wmode=\"transparent\"></embed></div>'),
(426, 587, 'enclosure', 'https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3\n3043247\naudio/mpeg\n'),
(427, 1011, '_thumbnail_id', '1022'),
(428, 1016, '_thumbnail_id', '1027'),
(429, 1163, '_thumbnail_id', '1628'),
(430, 1177, '_thumbnail_id', '1023'),
(431, 1179, '_oembed_time_d01e104b758ab65a49dfdede5913069c', '1410548953'),
(432, 1179, '_oembed_ac49b172e1844531a885a53eff2efd91', '<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Really cool to read through and find so much awesomeness added to WordPress 3.6 while I was gone. I should take three weeks off more often.</p>&mdash; Andrew Nacin (@nacin) <a href=\"https://twitter.com/nacin/status/319508408669708289\">April 3, 2013</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),
(433, 1179, '_oembed_time_ac49b172e1844531a885a53eff2efd91', '1420203780'),
(434, 1179, '_oembed_d01e104b758ab65a49dfdede5913069c', '<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Really cool to read through and find so much awesomeness added to WordPress 3.6 while I was gone. I should take three weeks off more often.</p>&mdash; Andrew Nacin (@nacin) <a href=\"https://twitter.com/nacin/status/319508408669708289\">April 3, 2013</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),
(435, 1778, 'enclosure', 'https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3\n3043247\naudio/mpeg\n'),
(436, 1778, 'enclosure', 'https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov\n29881426\nvideo/quicktime\n'),
(437, 1781, '_oembed_874fe46ae491204826d1694d2ef33bc0', '<blockquote class=\"twitter-tweet\" data-width=\"550\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">WordPress 5.0 Beta 2 <a href=\"https://t.co/Bn5QRqAwLN\">https://t.co/Bn5QRqAwLN</a></p>&mdash; WordPress (@WordPress) <a href=\"https://twitter.com/WordPress/status/1057136472321613824?ref_src=twsrc%5Etfw\">October 30, 2018</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>'),
(438, 1781, '_oembed_8391feecdd4849ee3e1e157e0c2149eb', '<blockquote class=\"twitter-tweet\" data-width=\"550\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">WordPress 5.0 Beta 2 <a href=\"https://t.co/Bn5QRqAwLN\">https://t.co/Bn5QRqAwLN</a></p>&mdash; WordPress (@WordPress) <a href=\"https://twitter.com/WordPress/status/1057136472321613824?ref_src=twsrc%5Etfw\">October 30, 2018</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>'),
(439, 1781, '_oembed_time_8391feecdd4849ee3e1e157e0c2149eb', '1541053042'),
(440, 1781, '_oembed_time_874fe46ae491204826d1694d2ef33bc0', '1541177221'),
(441, 1781, '_oembed_8954002f3cee8b890d4d590be308ea1a', '<iframe width=\"720\" height=\"405\" src=\"https://www.youtube.com/embed/ex8fMxXJDJw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),
(442, 1781, '_oembed_time_8954002f3cee8b890d4d590be308ea1a', '1541177221'),
(443, 1781, '_oembed_b0ae412e6c1109b456d564d524e039f4', '<div id=\"fb-root\"></div><script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = \'https://connect.facebook.net/sv_SE/sdk.js#xfbml=1&version=v3.2\'; fjs.parentNode.insertBefore(js, fjs);}(document, \'script\', \'facebook-jssdk\'));</script><div class=\"fb-post\" data-href=\"https://www.facebook.com/6427302910/posts/10156380423617911/\" data-width=\"720\"><blockquote cite=\"https://www.facebook.com/WordPress/posts/10156380423617911\" class=\"fb-xfbml-parse-ignore\"><p>Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...</p>Publicerat av <a href=\"https://www.facebook.com/WordPress/\">WordPress</a>&nbsp;<a href=\"https://www.facebook.com/WordPress/posts/10156380423617911\">Måndag 3 september 2018</a></blockquote></div>'),
(444, 1781, '_oembed_time_b0ae412e6c1109b456d564d524e039f4', '1541177221'),
(445, 1781, '_oembed_6fa7bb5895e39bde447f2aa42112350c', '<blockquote class=\"instagram-media\" data-instgrm-captioned data-instgrm-permalink=\"https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_embed&amp;utm_medium=loading\" data-instgrm-version=\"12\" style=\" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:658px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);\"><div style=\"padding:16px;\"> <a href=\"https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_embed&amp;utm_medium=loading\" style=\" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;\" target=\"_blank\"> <div style=\" display: flex; flex-direction: row; align-items: center;\"> <div style=\"background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;\"></div> <div style=\"display: flex; flex-direction: column; flex-grow: 1; justify-content: center;\"> <div style=\" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;\"></div> <div style=\" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;\"></div></div></div><div style=\"padding: 19% 0;\"></div><div style=\"display:block; height:50px; margin:0 auto 12px; width:50px;\"><svg width=\"50px\" height=\"50px\" viewBox=\"0 0 60 60\" version=\"1.1\" xmlns=\"https://www.w3.org/2000/svg\" xmlns:xlink=\"https://www.w3.org/1999/xlink\"><g stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g transform=\"translate(-511.000000, -20.000000)\" fill=\"#000000\"><g><path d=\"M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,7
(446, 1781, '_oembed_time_6fa7bb5895e39bde447f2aa42112350c', '1541177222'),
(447, 1781, '_oembed_f284bc472428c21b3a384f58eeabdfe9', '<iframe width=\'720\' height=\'405\' src=\'https://videopress.com/embed/r0l8GmDi?hd=0\' frameborder=\'0\' allowfullscreen></iframe><script src=\'https://v0.wordpress.com/js/next/videopress-iframe.js?m=1435166243\'></script>'),
(448, 1781, '_oembed_time_f284bc472428c21b3a384f58eeabdfe9', '1541177222'),
(449, 1781, '_oembed_8c87a830bb75021cd30329a001513994', '<blockquote class=\"twitter-tweet\" data-width=\"550\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">WordPress 5.0 Beta 2 <a href=\"https://t.co/Bn5QRqAwLN\">https://t.co/Bn5QRqAwLN</a></p>&mdash; WordPress (@WordPress) <a href=\"https://twitter.com/WordPress/status/1057136472321613824?ref_src=twsrc%5Etfw\">October 30, 2018</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>'),
(450, 1781, '_oembed_time_8c87a830bb75021cd30329a001513994', '1541092484'),
(451, 1781, '_oembed_574f2ec202809f638414562e06899fc7', '<iframe width=\"1170\" height=\"658\" src=\"https://www.youtube.com/embed/ex8fMxXJDJw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),
(452, 1781, '_oembed_time_574f2ec202809f638414562e06899fc7', '1541092484'),
(453, 1781, '_oembed_26afb00b3c55411ff47bd585cbb4a4eb', '<div id=\"fb-root\"></div><script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = \'https://connect.facebook.net/sv_SE/sdk.js#xfbml=1&version=v3.2\'; fjs.parentNode.insertBefore(js, fjs);}(document, \'script\', \'facebook-jssdk\'));</script><div class=\"fb-post\" data-href=\"https://www.facebook.com/6427302910/posts/10156380423617911/\" data-width=\"750\"><blockquote cite=\"https://www.facebook.com/WordPress/posts/10156380423617911\" class=\"fb-xfbml-parse-ignore\"><p>Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...</p>Publicerat av <a href=\"https://www.facebook.com/WordPress/\">WordPress</a>&nbsp;<a href=\"https://www.facebook.com/WordPress/posts/10156380423617911\">Måndag 3 september 2018</a></blockquote></div>'),
(454, 1781, '_oembed_time_26afb00b3c55411ff47bd585cbb4a4eb', '1541092484'),
(455, 1781, '_oembed_915f84bafbd1c86d8d5092d985805e15', '<blockquote class=\"instagram-media\" data-instgrm-captioned data-instgrm-permalink=\"https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_embed&amp;utm_medium=loading\" data-instgrm-version=\"12\" style=\" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:658px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);\"><div style=\"padding:16px;\"> <a href=\"https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_embed&amp;utm_medium=loading\" style=\" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;\" target=\"_blank\"> <div style=\" display: flex; flex-direction: row; align-items: center;\"> <div style=\"background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;\"></div> <div style=\"display: flex; flex-direction: column; flex-grow: 1; justify-content: center;\"> <div style=\" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;\"></div> <div style=\" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;\"></div></div></div><div style=\"padding: 19% 0;\"></div><div style=\"display:block; height:50px; margin:0 auto 12px; width:50px;\"><svg width=\"50px\" height=\"50px\" viewBox=\"0 0 60 60\" version=\"1.1\" xmlns=\"https://www.w3.org/2000/svg\" xmlns:xlink=\"https://www.w3.org/1999/xlink\"><g stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g transform=\"translate(-511.000000, -20.000000)\" fill=\"#000000\"><g><path d=\"M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,7
(456, 1781, '_oembed_time_915f84bafbd1c86d8d5092d985805e15', '1541092485'),
(457, 1781, '_oembed_e77958e689d5721871a80e7c8a612eb8', '<iframe width=\'1170\' height=\'658\' src=\'https://videopress.com/embed/r0l8GmDi?hd=0\' frameborder=\'0\' allowfullscreen></iframe><script src=\'https://v0.wordpress.com/js/next/videopress-iframe.js?m=1435166243\'></script>'),
(458, 1781, '_oembed_time_e77958e689d5721871a80e7c8a612eb8', '1541092486'),
(459, 1787, '_thumbnail_id', '771'),
(460, 1809, '_wp_page_template', 'default'),
(461, 1811, '_wp_page_template', 'default'),
(462, 1813, '_wp_page_template', 'default'),
(463, 1814, '_menu_item_type', 'post_type'),
(464, 1814, '_menu_item_menu_item_parent', '1726'),
(465, 1814, '_menu_item_object_id', '1133'),
(466, 1814, '_menu_item_object', 'page'),
(467, 1814, '_menu_item_target', ''),
(468, 1814, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(469, 1814, '_menu_item_xfn', ''),
(470, 1814, '_menu_item_url', ''),
(471, 1815, '_menu_item_type', 'post_type'),
(472, 1815, '_menu_item_menu_item_parent', '1726'),
(473, 1815, '_menu_item_object_id', '1134'),
(474, 1815, '_menu_item_object', 'page'),
(475, 1815, '_menu_item_target', ''),
(476, 1815, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(477, 1815, '_menu_item_xfn', ''),
(478, 1815, '_menu_item_url', ''),
(479, 1816, '_menu_item_type', 'post_type'),
(480, 1816, '_menu_item_menu_item_parent', '0'),
(481, 1816, '_menu_item_object_id', '1133'),
(482, 1816, '_menu_item_object', 'page'),
(483, 1816, '_menu_item_target', ''),
(484, 1816, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(485, 1816, '_menu_item_xfn', ''),
(486, 1816, '_menu_item_url', ''),
(487, 1817, '_menu_item_type', 'post_type'),
(488, 1817, '_menu_item_menu_item_parent', '0'),
(489, 1817, '_menu_item_object_id', '1134'),
(490, 1817, '_menu_item_object', 'page'),
(491, 1817, '_menu_item_target', ''),
(492, 1817, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(493, 1817, '_menu_item_xfn', ''),
(494, 1817, '_menu_item_url', ''),
(495, 1818, '_menu_item_type', 'post_type'),
(496, 1818, '_menu_item_menu_item_parent', '0'),
(497, 1818, '_menu_item_object_id', '746'),
(498, 1818, '_menu_item_object', 'page'),
(499, 1818, '_menu_item_target', ''),
(500, 1818, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(501, 1818, '_menu_item_xfn', ''),
(502, 1818, '_menu_item_url', ''),
(503, 1819, '_menu_item_type', 'post_type'),
(504, 1819, '_menu_item_menu_item_parent', '0'),
(505, 1819, '_menu_item_object_id', '748'),
(506, 1819, '_menu_item_object', 'page'),
(507, 1819, '_menu_item_target', ''),
(508, 1819, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(509, 1819, '_menu_item_xfn', ''),
(510, 1819, '_menu_item_url', ''),
(511, 1820, '_menu_item_type', 'post_type'),
(512, 1820, '_menu_item_menu_item_parent', '0'),
(513, 1820, '_menu_item_object_id', '742'),
(514, 1820, '_menu_item_object', 'page'),
(515, 1820, '_menu_item_target', ''),
(516, 1820, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(517, 1820, '_menu_item_xfn', ''),
(518, 1820, '_menu_item_url', ''),
(519, 1821, '_menu_item_type', 'post_type'),
(520, 1821, '_menu_item_menu_item_parent', '0'),
(521, 1821, '_menu_item_object_id', '744'),
(522, 1821, '_menu_item_object', 'page'),
(523, 1821, '_menu_item_target', ''),
(524, 1821, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(525, 1821, '_menu_item_xfn', ''),
(526, 1821, '_menu_item_url', ''),
(527, 1822, '_menu_item_type', 'post_type'),
(528, 1822, '_menu_item_menu_item_parent', '0'),
(529, 1822, '_menu_item_object_id', '733'),
(530, 1822, '_menu_item_object', 'page'),
(531, 1822, '_menu_item_target', ''),
(532, 1822, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(533, 1822, '_menu_item_xfn', ''),
(534, 1822, '_menu_item_url', ''),
(535, 1823, '_menu_item_type', 'post_type'),
(536, 1823, '_menu_item_menu_item_parent', '0'),
(537, 1823, '_menu_item_object_id', '735'),
(538, 1823, '_menu_item_object', 'page'),
(539, 1823, '_menu_item_target', ''),
(540, 1823, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(541, 1823, '_menu_item_xfn', ''),
(542, 1823, '_menu_item_url', ''),
(543, 1824, '_menu_item_type', 'post_type'),
(544, 1824, '_menu_item_menu_item_parent', '1770'),
(545, 1824, '_menu_item_object_id', '1133'),
(546, 1824, '_menu_item_object', 'page'),
(547, 1824, '_menu_item_target', ''),
(548, 1824, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(549, 1824, '_menu_item_xfn', ''),
(550, 1824, '_menu_item_url', ''),
(551, 1825, '_menu_item_type', 'post_type'),
(552, 1825, '_menu_item_menu_item_parent', '1770'),
(553, 1825, '_menu_item_object_id', '1134'),
(554, 1825, '_menu_item_object', 'page'),
(555, 1825, '_menu_item_target', ''),
(556, 1825, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(557, 1825, '_menu_item_xfn', ''),
(558, 1825, '_menu_item_url', ''),
(559, 1826, '_menu_item_type', 'post_type'),
(560, 1826, '_menu_item_menu_item_parent', '1775'),
(561, 1826, '_menu_item_object_id', '746'),
(562, 1826, '_menu_item_object', 'page'),
(563, 1826, '_menu_item_target', ''),
(564, 1826, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(565, 1826, '_menu_item_xfn', ''),
(566, 1826, '_menu_item_url', ''),
(567, 1827, '_menu_item_type', 'post_type'),
(568, 1827, '_menu_item_menu_item_parent', '1775'),
(569, 1827, '_menu_item_object_id', '748'),
(570, 1827, '_menu_item_object', 'page'),
(571, 1827, '_menu_item_target', ''),
(572, 1827, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(573, 1827, '_menu_item_xfn', ''),
(574, 1827, '_menu_item_url', ''),
(575, 1828, '_menu_item_type', 'post_type'),
(576, 1828, '_menu_item_menu_item_parent', '1774'),
(577, 1828, '_menu_item_object_id', '742'),
(578, 1828, '_menu_item_object', 'page'),
(579, 1828, '_menu_item_target', ''),
(580, 1828, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(581, 1828, '_menu_item_xfn', ''),
(582, 1828, '_menu_item_url', ''),
(583, 1829, '_menu_item_type', 'post_type'),
(584, 1829, '_menu_item_menu_item_parent', '1774'),
(585, 1829, '_menu_item_object_id', '744'),
(586, 1829, '_menu_item_object', 'page'),
(587, 1829, '_menu_item_target', ''),
(588, 1829, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(589, 1829, '_menu_item_xfn', ''),
(590, 1829, '_menu_item_url', ''),
(591, 1830, '_menu_item_type', 'post_type'),
(592, 1830, '_menu_item_menu_item_parent', '0'),
(593, 1830, '_menu_item_object_id', '733'),
(594, 1830, '_menu_item_object', 'page'),
(595, 1830, '_menu_item_target', ''),
(596, 1830, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(597, 1830, '_menu_item_xfn', ''),
(598, 1830, '_menu_item_url', ''),
(599, 1831, '_menu_item_type', 'post_type'),
(600, 1831, '_menu_item_menu_item_parent', '0'),
(601, 1831, '_menu_item_object_id', '735'),
(602, 1831, '_menu_item_object', 'page'),
(603, 1831, '_menu_item_target', ''),
(604, 1831, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(605, 1831, '_menu_item_xfn', ''),
(606, 1831, '_menu_item_url', '');
-- --------------------------------------------------------
--
-- Table structure for table `perf_posts`
--
CREATE TABLE `perf_posts` (
`ID` bigint UNSIGNED NOT NULL,
`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 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_parent` bigint UNSIGNED NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`menu_order` int NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_count` bigint NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `perf_posts`
--
INSERT INTO `perf_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2022-01-24 10:16:52', '2022-01-24 10:16:52', '<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2022-01-24 10:16:52', '2022-01-24 10:16:52', '', 0, 'http://localhost:8080/wordpress/?p=1', 0, 'post', '', 1),
(2, 1, '2022-01-24 10:16:52', '2022-01-24 10:16:52', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://localhost:8080/wordpress/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2022-01-24 10:16:52', '2022-01-24 10:16:52', '', 0, 'http://localhost:8080/wordpress/?page_id=2', 0, 'page', '', 0),
(3, 1, '2022-01-24 10:16:52', '2022-01-24 10:16:52', '<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://localhost:8080/wordpress.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a
(4, 1, '2022-01-24 10:17:09', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2022-01-24 10:17:09', '0000-00-00 00:00:00', '', 0, 'http://localhost:8080/wordpress/?p=4', 0, 'post', '', 0),
(146, 1, '2007-09-04 09:52:50', '2007-09-04 16:52:50', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.\n\nCras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.\n\nPraesent interdum mollis neque. In egestas nulla eget pede. Integer eu purus sed diam dictum scelerisque. Morbi cursus velit et felis. Maecenas faucibus aliquet erat. In aliquet rhoncus tellus. Integer auctor nibh a nunc fringilla tempus. Cras turpis urna, dignissim vel, suscipit pulvinar, rutrum quis, sem. Ut lobortis convallis dui. Sed nonummy orci a justo. Morbi nec diam eget eros eleifend tincidunt.\n\nՀայերեն\n\nLorem Ipsum-ը տպագրության և տպագրական արդյունաբերության համար նախատեսված մոդելային տեքստ է: Սկսած 1500-ականներից` Lorem Ipsum-ը հանդիսացել է տպագրական արդյունաբերության ստանդարտ մոդելային տեքստ, ինչը մի անհայտ տպագրիչի կողմից տարբեր տառատեսակների օրինակների գիրք ստեղծելու ջանքերի արդյունք է: Այս տեքստը ոչ միայն կարողացել է գոյատևել հինգ դարաշրջան, այլև ներառվել է էլեկտրոնային տպագրության մեջ` մնալով էապես անփոփոխ: Այն հայտնի է դարձել 1960-ականներին Lorem Ipsum բովանդակող Letraset էջերի թողարկման արդյունքում, իսկ ավելի ուշ համակարգչային տպագրության այնպիսի ծրագրերի թողարկման հետևանքով, ինչպիսին է Aldus PageMaker-ը, որը ներառում է Lorem Ipsum-ի տարատեսակներ:\n\nБългарски\n\nLorem Ipsum е елементарен примерен текст, използван в печатарската и типографската индустрия. Lorem Ipsum е индустриален стандарт от около 1500 година, когато неизвестен печатар взема няколко печатарски букви и ги разбърква, за да напечата с тях книга с примерни шрифтове. Този начин не само е оцелял повече от 5 века, но е навлязъл и в публикуването на електронни издания като е запазен почти без промяна. Популяризиран е през 60те години на 20ти век със издаването на Letraset листи, съдържащи Lorem Ipsum пасажи, популярен е и в наши дни във софтуер за печатни издания като Aldus PageMaker, който включва различни версии на Lorem Ipsum.\n\nCatalà\n\nLorem Ipsum és
(155, 1, '2007-09-04 10:47:47', '2007-09-04 17:47:47', 'Repository-hosted Themes are required to support display of comments on static Pages as well as on single blog Posts. This static Page has comments, and these comments should be displayed.\nIf the Theme includes a custom option to prevent static Pages from displaying comments, such option must be disabled (i.e. so that static Pages display comments) by default.\nAlso, verify that this Page does not display taxonomy information (e.g. categories or tags) or time-stamp information (Page publish date/time).', 'Page with comments', '', 'publish', 'open', 'closed', '', 'page-with-comments', '', '', '2007-09-04 10:47:47', '2007-09-04 17:47:47', '', 1725, 'https://wpthemetestdata.wordpress.com/page-with-comments/', 3, 'page', '', 3),
(156, 1, '2007-09-04 10:48:10', '2007-09-04 17:48:10', 'This static Page is set not to allow comments. Verify that the Page does not display a comment list, comment reply links, or comment reply form.\nAlso, verify that the Page does not display a \"comments are closed\" type message. Such messages are not suitable for static Pages, and should only be used on blog Posts.', 'Page with comments disabled', '', 'publish', 'closed', 'closed', '', 'page-with-comments-disabled', '', '', '2007-09-04 10:48:10', '2007-09-04 17:48:10', '', 1725, 'https://wpthemetestdata.wordpress.com/page-with-comments-disabled/', 4, 'page', '', 0),
(172, 1, '2007-12-11 16:23:16', '2007-12-11 06:23:16', 'Level 3 of the reverse hierarchy test.', 'Level 3', '', 'publish', 'closed', 'closed', '', 'level-3', '', '', '2007-12-11 16:23:16', '2007-12-11 06:23:16', '', 173, 'https://wpthemetestdata.wordpress.com/level-3/', 0, 'page', '', 0),
(173, 1, '2007-12-11 16:23:33', '2007-12-11 06:23:33', 'Level 2 of the reverse hierarchy test.', 'Level 2', '', 'publish', 'closed', 'closed', '', 'level-2', '', '', '2007-12-11 16:23:33', '2007-12-11 06:23:33', '', 174, 'https://wpthemetestdata.wordpress.com/level-2/', 0, 'page', '', 0),
(174, 1, '2007-12-11 16:25:40', '2007-12-11 23:25:40', 'Level 1 of the reverse hierarchy test. This is to make sure the importer correctly assigns parents and children even when the children come first in the export file.', 'Level 1', '', 'publish', 'closed', 'closed', '', 'level-1', '', '', '2007-12-11 16:25:40', '2007-12-11 23:25:40', '', 0, 'https://wpthemetestdata.wordpress.com/level-1/', 5, 'page', '', 0),
(358, 1, '2010-10-05 00:27:25', '2010-10-05 07:27:25', 'All children, except one, grow up. They soon know that they will grow up, and the way Wendy knew was this. One day when she was two years old she was playing in a garden, and she plucked another flower and ran with it to her mother. I suppose she must have looked rather delightful, for Mrs. Darling put her hand to her heart and cried, \"Oh, why can\'t you remain like this for ever!\" This was all that passed between them on the subject, but henceforth Wendy knew that she must grow up. You always know after you are two. Two is the beginning of the end.\n\n<!--more-->\n\nMrs. Darling first heard of Peter when she was tidying up her children\'s minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day.\n\nIf you could keep awake (but of course you can\'t) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on.\n\nI don\'t know whether you have ever seen a map of a person\'s mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child\'s mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still.\n\nOf course the Neverlands vary a good deal. John\'s, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other\'s nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more.\n\nOf all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights.\n\nOccasi
(501, 1, '2010-08-01 09:42:26', '2010-08-01 16:42:26', 'The last item in this page\'s content is a thumbnail floated left. There should be page links following it. Make sure any elements after the content are clearing properly.\n\n The float is cleared when it does not stick out the bottom of the parent container, and when other elements that follow it do not wrap around the floated element.\n\n<img class=\"alignleft size-thumbnail wp-image-827\" title=\"Camera\" src=\"https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg?w=150\" alt=\"\" width=\"160\" /> <!--nextpage-->This is the second page', 'Clearing Floats', '', 'publish', 'closed', 'closed', '', 'clearing-floats', '', '', '2010-08-01 09:42:26', '2010-08-01 16:42:26', '', 1725, 'https://wpthemetestdata.wordpress.com/', 2, 'page', '', 0),
(555, 1, '2010-09-10 07:24:14', '2010-09-10 14:24:14', '[gallery]\n\n<!--nextpage-->\n\nYou can use this page to test the Theme\'s handling of the gallery shortcode, including the <code>columns</code> parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional.\n<h2>One Column</h2>\n[gallery columns=\"1\"]\n<h2>Two Columns</h2>\n[gallery columns=\"2\"]\n<h2>Three Columns</h2>\n[gallery columns=\"3\"]\n<h2>Four Columns</h2>\n[gallery columns=\"4\"]\n<h2>Five Columns</h2>\n[gallery columns=\"5\"]\n<h2>Six Columns</h2>\n[gallery columns=\"6\"]\n<h2>Seven Columns</h2>\n[gallery columns=\"7\"]\n<h2>Eight Columns</h2>\n[gallery columns=\"8\"]\n<h2>Nine Columns</h2>\n[gallery columns=\"9\"]', 'Post Format: Gallery', '', 'publish', 'closed', 'closed', '', 'post-format-gallery', '', '', '2010-09-10 07:24:14', '2010-09-10 14:24:14', '', 0, 'https://wpthemetestdata.wordpress.com/?p=555', 0, 'post', '', 0),
(559, 1, '2010-05-09 07:51:54', '2010-05-09 14:51:54', '“I never tried to prove nothing, just wanted to give a good show. My life has always been my music, it\'s always come first, but the music ain\'t worth nothing if you can\'t lay it on the public. The main thing is to live for that audience, \'cause what you\'re there for is to please the people.', 'Post Format: Aside', '', 'publish', 'closed', 'closed', '', 'post-format-aside', '', '', '2010-05-09 07:51:54', '2010-05-09 14:51:54', '', 0, 'https://wpthemetestdata.wordpress.com/?p=559', 0, 'post', '', 0),
(562, 1, '2010-01-08 07:59:31', '2010-01-08 14:59:31', 'Abbott: Strange as it may seem, they give ball players nowadays very peculiar names.\n\nCostello: Funny names?\n\nAbbott: Nicknames, nicknames. Now, on the St. Louis team we have Who\'s on first, What\'s on second, I Don\'t Know is on third--\n\nCostello: That\'s what I want to find out. I want you to tell me the names of the fellows on the St. Louis team.\n\nAbbott: I\'m telling you. Who\'s on first, What\'s on second, I Don\'t Know is on third--\n\nCostello: You know the fellows\' names?\n\nAbbott: Yes.\n\nCostello: Well, then who\'s playing first?\n\nAbbott: Yes.\n\nCostello: I mean the fellow\'s name on first base.\n\nAbbott: Who.\n\nCostello: The fellow playin\' first base.\n\nAbbott: Who.\n\nCostello: The guy on first base.\n\nAbbott: Who is on first.\n\nCostello: Well, what are you askin\' me for?\n\nAbbott: I\'m not asking you--I\'m telling you. Who is on first.\n\nCostello: I\'m asking you--who\'s on first?\n\nAbbott: That\'s the man\'s name.\n\nCostello: That\'s who\'s name?\n\nAbbott: Yes.\n\nCostello: When you pay off the first baseman every month, who gets the money?\n\nAbbott: Every dollar of it. And why not, the man\'s entitled to it.\n\nCostello: Who is?\n\nAbbott: Yes.\n\nCostello: So who gets it?\n\nAbbott: Why shouldn\'t he? Sometimes his wife comes down and collects it.\n\nCostello: Who\'s wife?\n\nAbbott: Yes. After all, the man earns it.\n\nCostello: Who does?\n\nAbbott: Absolutely.\n\nCostello: Well, all I\'m trying to find out is what\'s the guy\'s name on first base?\n\nAbbott: Oh, no, no. What is on second base.\n\nCostello: I\'m not asking you who\'s on second.\n\nAbbott: Who\'s on first!\n\nCostello: St. Louis has a good outfield?\n\nAbbott: Oh, absolutely.\n\nCostello: The left fielder\'s name?\n\nAbbott: Why.\n\nCostello: I don\'t know, I just thought I\'d ask.\n\nAbbott: Well, I just thought I\'d tell you.\n\nCostello: Then tell me who\'s playing left field?\n\nAbbott: Who\'s playing first.\n\nCostello: Stay out of the infield! The left fielder\'s name?\n\nAbbott: Why.\n\nCostello: Because.\n\nAbbott: Oh, he\'s center field.\n\nCostello: Wait a minute. You got a pitcher on this team?\n\nAbbott: Wouldn\'t this be a fine team without a pitcher?\n\nCostello: Tell me the pitcher\'s name.\n\nAbbott: Tomorrow.\n\nCostello: Now, when the guy at bat bunts the ball--me being a good catcher--I want to throw the guy out at first base, so I pick up the ball and throw it to who?\n\nAbbott: Now, that\'s he first thing you\'ve said right.\n\nCostello: I DON\'T EVEN KNOW WHAT I\'M TALKING ABOUT!\n\nAbbott: Don\'t get excited. Take it easy.\n\nCostello: I throw the ball to first base, whoever it is grabs the ball, so the guy runs to second. Who picks up the ball and throws it to what. What throws it to I don\'t know. I don\'t know throws it back to tomorrow--a triple play.\n\nAbbott: Yeah, it could be.\n\nCostello: Another guy gets up and it\'s a long ball to center.\n\nAbbott: Because.\n\nCostello: Why? I don\'t know. And I don\'t care.\n\nAbbott: What was that?\n\nCostello: I said, I DON\'T CARE!\n\nAbbott: Oh, that\'s our shortstop!', 'Post Format: Chat', '', 'publish', 'closed', 'closed', '', 'post-format-chat', '', '', '2010-01-08 07:59:31', '2010-01-08 14:59:31', '', 0, 'https://wpthemetestdata.wordpress.com/?p=562', 0, 'post', '', 0),
(565, 1, '2010-03-07 08:06:53', '2010-03-07 15:06:53', '<a href=\"https://make.wordpress.org/themes\" title=\"The WordPress Theme Review Team Website\">The WordPress Theme Review Team Website</a>', 'Post Format: Link', '', 'publish', 'closed', 'closed', '', 'post-format-link', '', '', '2010-03-07 08:06:53', '2010-03-07 15:06:53', '', 0, 'https://wpthemetestdata.wordpress.com/?p=565', 0, 'post', '', 0),
(568, 1, '2010-08-06 08:09:39', '2010-08-06 15:09:39', '[caption id=\"attachment_612\" align=\"aligncenter\" width=\"640\" caption=\"Chunk of resinous blackboy husk, Clarkson, Western Australia. This burns like a spinifex log.\"]<a href=\"https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg\"><img src=\"https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg\" alt=\"chunk of resinous blackboy husk\" title=\"dsc20040724_152504_532\" width=\"640\" height=\"480\" class=\"size-full wp-image-612\" /></a>[/caption]\n', 'Post Format: Image (Linked)', '', 'publish', 'closed', 'closed', '', 'post-format-image-linked', '', '', '2010-08-06 08:09:39', '2010-08-06 15:09:39', '', 0, 'https://wpthemetestdata.wordpress.com/?p=568', 0, 'post', '', 0),
(575, 1, '2010-02-05 08:13:15', '2010-02-05 15:13:15', '<blockquote>Only one thing is impossible for God: To find any sense in any copyright law on the planet.\n<cite><a href=\"http://www.brainyquote.com/quotes/quotes/m/marktwain163473.html\">Mark Twain</a></cite></blockquote>', 'Post Format: Quote', '', 'publish', 'closed', 'closed', '', 'post-format-quote', '', '', '2010-02-05 08:13:15', '2010-02-05 15:13:15', '', 0, 'https://wpthemetestdata.wordpress.com/?p=575', 0, 'post', '', 0),
(579, 1, '2010-04-04 08:21:24', '2010-04-04 15:21:24', 'WordPress, how do I love thee? Let me count the ways (in 140 characters or less).', 'Post Format: Status', '', 'publish', 'closed', 'closed', '', 'post-format-status', '', '', '2010-04-04 08:21:24', '2010-04-04 15:21:24', '', 0, 'https://wpthemetestdata.wordpress.com/?p=579', 0, 'post', '', 0),
(582, 1, '2010-06-03 08:25:58', '2010-06-03 15:25:58', 'https://wordpress.tv/2009/03/16/anatomy-of-a-wordpress-theme-exploring-the-files-behind-your-theme/\n\nPosted as per the <a href=\"https://codex.wordpress.org/Embeds\" target=\"_blank\" rel=\"noopener\">instructions in the Codex</a>.', 'Post Format: Video (WordPress.tv)', '', 'publish', 'closed', 'closed', '', 'post-format-video-wordpresstv', '', '', '2010-06-03 08:25:58', '2010-06-03 15:25:58', '', 0, 'https://wpthemetestdata.wordpress.com/?p=582', 0, 'post', '', 0),
(587, 1, '2010-07-02 08:36:44', '2010-07-02 15:36:44', 'Link:\n\n<a href=\"https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3\">St. Louis Blues</a>\n\nAudio shortcode:\n\n[audio https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]', 'Post Format: Audio', '', 'publish', 'closed', 'closed', '', 'post-format-audio', '', '', '2010-07-02 08:36:44', '2010-07-02 15:36:44', '', 0, 'https://wpthemetestdata.wordpress.com/?p=587', 0, 'post', '', 0),
(701, 1, '2011-05-20 18:49:43', '2011-05-21 01:49:43', 'Use this static Page to test the Theme\'s handling of the Front Page template file.\n\nThis is the Front Page content. Use this static Page to test the Front Page output of the Theme. The Theme should properly handle both Blog Posts Index as Front Page and static Page as Front Page.\n\nIf the site is set to display the Blog Posts Index as the Front Page, then this text should not be visible. If the site is set to display a static Page as the Front Page, then this text may or may not be visible. If the Theme does not include a front-page.php template file, then this text should appear on the Front Page when set to display a static Page. If the Theme does include a front-page.php template file, then this text may or may not appear.', 'Front Page', '', 'publish', 'open', 'closed', '', 'front-page', '', '', '2011-05-20 18:49:43', '2011-05-21 01:49:43', '', 0, 'https://wpthemetestdata.wordpress.com/?page_id=701', 0, 'page', '', 0),
(703, 1, '2011-05-20 18:51:43', '2011-05-21 01:51:43', 'Use this static Page to test the Theme\'s handling of the Blog Posts Index page. If the site is set to display a static Page on the Front Page, and this Page is set to display the Blog Posts Index, then this text should not appear. The title might, so make sure the theme is not supplying a hard-coded title for the Blog Post Index.', 'a Blog page', '', 'publish', 'open', 'closed', '', 'blog', '', '', '2011-05-20 18:51:43', '2011-05-21 01:51:43', '', 0, 'https://wpthemetestdata.wordpress.com/?page_id=703', 0, 'page', '', 0),
(733, 1, '2011-06-23 18:38:52', '2011-06-24 01:38:52', 'Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.', 'Page A', '', 'publish', 'open', 'closed', '', 'page-a', '', '', '2011-06-23 18:38:52', '2011-06-24 01:38:52', '', 0, 'https://wpthemetestdata.wordpress.com/?page_id=733', 10, 'page', '', 0),
(735, 1, '2011-06-23 18:39:14', '2011-06-24 01:39:14', '(lorem ipsum)', 'Page B', '', 'publish', 'open', 'closed', '', 'page-b', '', '', '2011-06-23 18:39:14', '2011-06-24 01:39:14', '', 0, 'https://wpthemetestdata.wordpress.com/?page_id=735', 11, 'page', '', 0),
(742, 1, '2011-06-23 19:03:33', '2011-06-24 02:03:33', '(lorem ipsum)', 'Level 2a', '', 'publish', 'open', 'closed', '', 'level-2a', '', '', '2011-06-23 19:03:33', '2011-06-24 02:03:33', '', 174, 'https://wpthemetestdata.wordpress.com/?page_id=742', 0, 'page', '', 0),
(744, 1, '2011-06-23 19:04:03', '2011-06-24 02:04:03', '(lorem ipsum)', 'Level 2b', '', 'publish', 'open', 'closed', '', 'level-2b', '', '', '2011-06-23 19:04:03', '2011-06-24 02:04:03', '', 174, 'https://wpthemetestdata.wordpress.com/?page_id=744', 0, 'page', '', 0),
(746, 1, '2011-06-23 19:04:24', '2011-06-24 02:04:24', '(lorem ipsum)', 'Level 3a', '', 'publish', 'open', 'closed', '', 'level-3a', '', '', '2011-06-23 19:04:24', '2011-06-24 02:04:24', '', 173, 'https://wpthemetestdata.wordpress.com/?page_id=746', 0, 'page', '', 0),
(748, 1, '2011-06-23 19:04:46', '2011-06-24 02:04:46', '(lorem ipsum)', 'Level 3b', '', 'publish', 'open', 'closed', '', 'level-3b', '', '', '2011-06-23 19:04:46', '2011-06-24 02:04:46', '', 173, 'https://wpthemetestdata.wordpress.com/?page_id=748', 0, 'page', '', 0),
(993, 1, '2012-03-15 14:38:08', '2012-03-15 21:38:08', 'This is the post content. It <strong>should</strong> be displayed in place of the user-defined excerpt in single-page views.', 'Template: Excerpt (Defined)', 'This is a user-defined post excerpt. It <em>should</em> be displayed in place of the post content in archive-index pages. It can be longer than the automatically generated excerpts, and can have <strong>HTML</strong> tags.', 'publish', 'closed', 'closed', '', 'template-excerpt-defined', '', '', '2012-03-15 14:38:08', '2012-03-15 21:38:08', '', 0, 'http://wptest.io/demo/?p=993', 0, 'post', '', 0),
(996, 1, '2012-03-15 14:41:11', '2012-03-15 21:41:11', 'This content is before the <a title=\"The More Tag\" href=\"https://en.support.wordpress.com/splitting-content/more-tag/\" target=\"_blank\" rel=\"noopener\">more tag</a>.\n\nRight after this sentence should be a \"continue reading\" button of some sort on list pages of themes that show full content. It won\'t show on single pages or on themes showing excerpts.\n\n<!--more-->\n\nAnd this content is after the more tag. (which should be the anchor link for when the button is clicked)', 'Template: More Tag', '', 'publish', 'closed', 'closed', '', 'template-more-tag', '', '', '2012-03-15 14:41:11', '2012-03-15 21:41:11', '', 0, 'http://wptest.io/demo/?p=996', 0, 'post', '', 0),
(1000, 1, '2009-05-15 14:48:32', '2009-05-15 21:48:32', 'Nested and mixed lists are an interesting beast. It\'s a corner case to make sure that\n<ul>\n <li>Lists within lists do not break the ordered list numbering order</li>\n <li>Your list styles go deep enough.</li>\n</ul>\n<h3>Ordered - Unordered - Ordered</h3>\n<ol>\n <li>ordered item</li>\n <li>ordered item\n<ul>\n <li><strong>unordered</strong></li>\n <li><strong>unordered</strong>\n<ol>\n <li>ordered item</li>\n <li>ordered item</li>\n</ol>\n</li>\n</ul>\n</li>\n <li>ordered item</li>\n <li>ordered item</li>\n</ol>\n<h3>Ordered - Unordered - Unordered</h3>\n<ol>\n <li>ordered item</li>\n <li>ordered item\n<ul>\n <li><strong>unordered</strong></li>\n <li><strong>unordered</strong>\n<ul>\n <li>unordered item</li>\n <li>unordered item</li>\n</ul>\n</li>\n</ul>\n</li>\n <li>ordered item</li>\n <li>ordered item</li>\n</ol>\n<h3>Unordered - Ordered - Unordered</h3>\n<ul>\n <li>unordered item</li>\n <li>unordered item\n<ol>\n <li>ordered</li>\n <li>ordered\n<ul>\n <li>unordered item</li>\n <li>unordered item</li>\n</ul>\n</li>\n</ol>\n</li>\n <li>unordered item</li>\n <li>unordered item</li>\n</ul>\n<h3>Unordered - Unordered - Ordered</h3>\n<ul>\n <li>unordered item</li>\n <li>unordered item\n<ul>\n <li>unordered</li>\n <li>unordered\n<ol>\n <li><strong>ordered item</strong></li>\n <li><strong>ordered item</strong></li>\n</ol>\n</li>\n</ul>\n</li>\n <li>unordered item</li>\n <li>unordered item</li>\n</ul>', 'Edge Case: Nested And Mixed Lists', '', 'publish', 'closed', 'closed', '', 'edge-case-nested-and-mixed-lists', '', '', '2009-05-15 14:48:32', '2009-05-15 21:48:32', '', 0, 'http://wptest.io/demo/?p=1000', 0, 'post', '', 0),
(1011, 1, '2012-03-15 15:15:12', '2012-03-15 22:15:12', 'This post should display a <a title=\"Featured Images\" href=\"https://en.support.wordpress.com/featured-images/#setting-a-featured-image\" target=\"_blank\" rel=\"noopener\">featured image</a>, if the theme <a title=\"Post Thumbnails\" href=\"https://codex.wordpress.org/Post_Thumbnails\" target=\"_blank\" rel=\"noopener\">supports it</a>.\n\nNon-square images can provide some unique styling issues.\n\nThis post tests a horizontal featured image.', 'Template: Featured Image (Horizontal)', '', 'publish', 'closed', 'closed', '', 'template-featured-image-horizontal', '', '', '2012-03-15 15:15:12', '2012-03-15 22:15:12', '', 0, 'http://wptest.io/demo/?p=1011', 0, 'post', '', 0),
(1016, 1, '2012-03-15 15:36:32', '2012-03-15 22:36:32', 'This post should display a <a title=\"Featured Images\" href=\"https://en.support.wordpress.com/featured-images/#setting-a-featured-image\" target=\"_blank\" rel=\"noopener\">featured image</a>, if the theme <a title=\"Post Thumbnails\" href=\"https://codex.wordpress.org/Post_Thumbnails\" target=\"_blank\" rel=\"noopener\">supports it</a>.\n\nNon-square images can provide some unique styling issues.\n\nThis post tests a vertical featured image.', 'Template: Featured Image (Vertical)', '', 'publish', 'closed', 'closed', '', 'template-featured-image-vertical', '', '', '2012-03-15 15:36:32', '2012-03-15 22:36:32', '', 0, 'http://wptest.io/demo/?p=1016', 0, 'post', '', 0),
(1031, 1, '2010-09-09 17:23:27', '2010-09-10 00:23:27', 'This is a test for Jetpack\'s Tiled Gallery.\n\nInstall <a title=\"Jetpack for WordPress\" href=\"https://wordpress.org/plugins/jetpack/\" target=\"_blank\" rel=\"noopener\">Jetpack</a> to test.\n\n[gallery type=\"rectangular\" columns=\"4\" ids=\"755,757,758,760,766,763\" orderby=\"rand\"]\n\nThis is some text after the Tiled Gallery just to make sure that everything spaces nicely.', 'Post Format: Gallery (Tiled)', '', 'publish', 'closed', 'closed', '', 'post-format-gallery-tiled', '', '', '2010-09-09 17:23:27', '2010-09-10 00:23:27', '', 0, 'http://wptest.io/demo/?p=1031', 0, 'post', '', 0),
(1133, 1, '2013-03-15 18:19:23', '2013-03-15 23:19:23', 'Welcome to image alignment! The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let\'s get started.\n\nOn the topic of alignment, it should be noted that users can choose from the options of <em>None</em>, <em>Left</em>, <em>Right, </em>and <em>Center</em>. In addition, they also get the options of <em>Thumbnail</em>, <em>Medium</em>, <em>Large</em> &amp; <em>Fullsize</em>. Be sure to try this page in RTL mode and it should look the same as LTR. \n<p><img class=\"size-full wp-image-906 aligncenter\" title=\"Image Alignment 580x300\" alt=\"Image Alignment 580x300\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg\" width=\"580\" height=\"300\" /></p>\nThe image above happens to be <em><strong>centered</strong></em>.\n\n<img class=\"size-full wp-image-904 alignleft\" title=\"Image Alignment 150x150\" alt=\"Image Alignment 150x150\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg\" width=\"150\" height=\"150\" /> The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is <em><strong>left aligned</strong></em>. \n\nAs you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we\'ll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it\'s thang. Mission accomplished!\n\nAnd now for a <em><strong>massively large image</strong></em>. It also has <em><strong>no alignment</strong></em>.\n\n<img class=\"alignnone wp-image-907\" title=\"Image Alignment 1200x400\" alt=\"Image Alignment 1200x400\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg\" width=\"1200\" height=\"400\" />\n\nThe image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.\n\n<img class=\"aligncenter wp-image-907\" title=\"Image Alignment 1200x400\" alt=\"Image Alignment 1200x400\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg\" width=\"1200\" height=\"400\" />\n\nAnd we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.\n\n<img class=\"size-full wp-image-905 alignright\" title=\"Image Alignment 300x200\" alt=\"Image Alignment 300x200\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg\" width=\"300\" height=\"200\" />\n\nAnd now we\'re going to shift things to the <em><strong>right align</strong></em>. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don\'t care what the left aligned image says, you look great. Don\'t let anyone else tell you differently.\n\nIn just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right.\n\nAnd just when you thought we were done, we\'re going to do them all over again with captions!\n\n[caption id=\"attachment_906\" align=\"aligncenter\" width=\"580\"]<img class=\"size-full wp-image-906 \" title=\"Image Alignment 580x300\" alt=\"Image Alignment 580x300\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg\" width=\"580\" height=\"300\" /> Look at 580x300 getting some <a title=\"Image Settings\" href=\"https://en.support.wordpress.
INSERT INTO `perf_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1134, 1, '2013-03-15 18:20:05', '2013-03-15 23:20:05', '<strong>Headings</strong>\n<h1>Header one</h1>\n<h2>Header two</h2>\n<h3>Header three</h3>\n<h4>Header four</h4>\n<h5>Header five</h5>\n<h6>Header six</h6>\n<h2>Blockquotes</h2>\nSingle line blockquote:\n<blockquote>Stay hungry. Stay foolish.</blockquote>\nMulti line blockquote with a cite reference:\n<blockquote cite=\"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote\"><p>The <strong>HTML <code>&lt;blockquote&gt;</code> Element</strong> (or <em>HTML Block Quotation Element</em>) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see <a href=\"https://developer.mozilla.org/en-US/docs/HTML/Element/blockquote#Notes\">Notes</a> for how to change it). A URL for the source of the quotation may be given using the <strong>cite</strong> attribute, while a text representation of the source can be given using the <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/cite\" title=\"The HTML Citation Element &lt;cite&gt; represents a reference to a creative work. It must include the title of a work or a URL reference, which may be in an abbreviated form according to the conventions used for the addition of citation metadata.\"><code>&lt;cite&gt;</code></a> element.</p></blockquote>\n<cite>multiple contributors</cite> - MDN HTML element reference - blockquote\n<h2>Tables</h2>\n<table>\n<tbody>\n<tr>\n<th>Employee</th>\n<th class=\"views\">Salary</th>\n<th></th>\n</tr>\n<tr class=\"odd\">\n<td><a href=\"http://example.com/\">Jane</a></td>\n<td>$1</td>\n<td>Because that\'s all Steve Jobs needed for a salary.</td>\n</tr>\n<tr class=\"even\">\n<td><a href=\"http://example.com\">John</a></td>\n<td>$100K</td>\n<td>For all the blogging he does.</td>\n</tr>\n<tr class=\"odd\">\n<td><a href=\"http://example.com/\">Jane</a></td>\n<td>$100M</td>\n<td>Pictures are worth a thousand words, right? So Tom x 1,000.</td>\n</tr>\n<tr class=\"even\">\n<td><a href=\"http://example.com/\">Jane</a></td>\n<td>$100B</td>\n<td>With hair like that?! Enough said...</td>\n</tr>\n</tbody>\n</table>\n<h2>Definition Lists</h2>\n<dl><dt>Definition List Title</dt><dd>Definition list division.</dd><dt>Startup</dt><dd>A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.</dd><dt>#dowork</dt><dd>Coined by Rob Dyrdek and his personal body guard Christopher \"Big Black\" Boykins, \"Do Work\" works as a self motivator, to motivating your friends.</dd><dt>Do It Live</dt><dd>I\'ll let Bill O\'Reilly will <a title=\"We\'ll Do It Live\" href=\"https://www.youtube.com/watch?v=O_HyZ5aW76c\">explain</a> this one.</dd></dl>\n<h2>Unordered Lists (Nested)</h2>\n<ul>\n <li>List item one\n<ul>\n <li>List item one\n<ul>\n <li>List item one</li>\n <li>List item two</li>\n <li>List item three</li>\n <li>List item four</li>\n</ul>\n</li>\n <li>List item two</li>\n <li>List item three</li>\n <li>List item four</li>\n</ul>\n</li>\n <li>List item two</li>\n <li>List item three</li>\n <li>List item four</li>\n</ul>\n<h2>Ordered List (Nested)</h2>\n<ol start=\"8\">\n <li>List item one -start at 8\n<ol>\n <li>List item one\n<ol reversed=\"reversed\">\n <li>List item one -reversed attribute</li>\n <li>List item two</li>\n <li>List item three</li>\n <li>List item four</li>\n</ol>\n</li>\n <li>List item two</li>\n <li>List item three</li>\n <li>List item four</li>\n</ol>\n</li>\n <li>List item two</li>\n <li>List item three</li>\n <li>List item four</li>\n</ol>\n<h2>HTML Tags</h2>\nThese supported tags come from the WordPress.com code <a title=\"Code\" href=\"https://en.support.wordpress.com/code/\">FAQ</a>.\n\n<strong>Address Tag</strong>\n\n<address>1 Infinite Loop\nCupertino, CA 95014\nUnited States</address><strong>Anchor Tag (aka. Link)</strong>\n\nThis is an example of a <a title=\"WordPress Foundation\" href=\"https://wordpressfoundation.org/\">link</a>.\n\n<strong>Abbreviation Tag</strong>\n\nThe abbreviation <abbr title=\"Seriously\">srsly</abbr> stands for \"
(1148, 1, '2012-01-03 10:11:37', '2012-01-03 17:11:37', 'This post tests comments in the following ways.\n<ul>\n <li>Threaded comments up to 10 levels deep</li>\n <li>Paginated comments (set <em><strong>Settings &gt; Discussion &gt; Break comments into pages</strong></em> to <em><strong>5</strong></em> top level comments per page)</li>\n <li>Comment markup / formatting</li>\n <li>Comment images</li>\n <li>Comment videos</li>\n <li>Author comments</li>\n <li>Gravatars and default fallbacks</li>\n</ul>', 'Template: Comments', '', 'publish', 'open', 'closed', '', 'template-comments', '', '', '2012-01-03 10:11:37', '2012-01-03 17:11:37', '', 0, 'https://wpthemetestdata.wordpress.com/2007/09/04/comment-test/', 0, 'post', '', 19),
(1149, 1, '2012-01-01 10:17:18', '2012-01-01 17:17:18', 'This post has many pingpacks and trackbacks.\n\nThere are a few ways to list them.\n<ol>\n <li>Above the comments</li>\n <li>Below the comments</li>\n <li>Included within the normal flow of comments</li>\n</ol>', 'Template: Pingbacks And Trackbacks', '', 'publish', 'closed', 'closed', '', 'template-pingbacks-an-trackbacks', '', '', '2012-01-01 10:17:18', '2012-01-01 17:17:18', '', 0, 'https://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/', 0, 'post', '', 5),
(1150, 1, '2012-01-02 10:21:15', '2012-01-02 17:21:15', 'This post has its comments, pingbacks, and trackbacks disabled.\n\nThere should be no comment reply form, but <em>should</em> display pingbacks and trackbacks.', 'Template: Comments Disabled', '', 'publish', 'closed', 'closed', '', 'template-comments-disabled', '', '', '2012-01-02 10:21:15', '2012-01-02 17:21:15', '', 0, 'https://wpthemetestdata.wordpress.com/2007/09/04/no-comments/', 0, 'post', '', 0),
(1151, 1, '2009-06-01 01:00:34', '2009-06-01 08:00:34', 'This post has many tags.', 'Edge Case: Many Tags', '', 'publish', 'closed', 'closed', '', 'edge-case-many-tags', '', '', '2009-06-01 01:00:34', '2009-06-01 08:00:34', '', 0, 'https://wpthemetestdata.wordpress.com/2007/11/24/many-tags/', 0, 'post', '', 0),
(1152, 1, '2009-07-02 02:00:03', '2009-07-02 09:00:03', 'This post has many categories.', 'Edge Case: Many Categories', '', 'publish', 'closed', 'closed', '', 'edge-case-many-categories', '', '', '2009-07-02 02:00:03', '2009-07-02 09:00:03', '', 0, 'https://wpthemetestdata.wordpress.com/2007/11/24/many-categories/', 0, 'post', '', 0),
(1153, 1, '2030-01-01 12:00:18', '2030-01-01 19:00:18', 'This post is scheduled to be published in the future.\n\nIt should not be displayed by the theme.', 'Scheduled', '', 'future', 'closed', 'closed', '', 'scheduled', '', '', '2030-01-01 12:00:18', '2030-01-01 19:00:18', '', 0, 'https://wpthemetestdata.wordpress.com/?p=418', 0, 'post', '', 0),
(1158, 1, '2010-08-08 05:00:39', '2010-08-08 12:00:39', '<dl id=\"attachment_612\" class=\"wp-caption aligncenter\" style=\"width:650px;\"><dt class=\"wp-caption-dt\"></dt></dl>&nbsp;\n\n<a href=\"https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg\"><img class=\"alignnone wp-image-755 size-large\" src=\"https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg?w=604\" alt=\"\" width=\"604\" height=\"453\" /></a>', 'Post Format: Image', '', 'publish', 'closed', 'closed', '', 'post-format-image', '', '', '2010-08-08 05:00:39', '2010-08-08 12:00:39', '', 0, 'https://wpthemetestdata.wordpress.com/?p=568', 0, 'post', '', 0),
(1161, 1, '2010-06-02 02:00:58', '2010-06-02 09:00:58', 'https://www.youtube.com/watch?v=SQEQr7c0-dw\n\nLearn more about <a title=\"WordPress Embeds\" href=\"https://codex.wordpress.org/Embeds\" target=\"_blank\" rel=\"noopener\">WordPress Embeds</a>.', 'Post Format: Video (YouTube)', '', 'publish', 'closed', 'closed', '', 'post-format-video-youtube', '', '', '2010-06-02 02:00:58', '2010-06-02 09:00:58', '', 0, 'https://wpthemetestdata.wordpress.com/?p=582', 0, 'post', '', 0),
(1163, 1, '2010-08-07 06:00:19', '2010-08-07 13:00:19', '[caption id=\"attachment_754\" align=\"alignnone\" width=\"604\"]<a href=\"https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg\"><img class=\"wp-image-754 size-large\" src=\"https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg?w=604\" alt=\"Bell on Wharf\" width=\"604\" height=\"453\" /></a> Bell on wharf in San Francisco[/caption]', 'Post Format: Image (Caption)', '', 'publish', 'closed', 'closed', '', 'post-format-image-caption', '', '', '2010-08-07 06:00:19', '2010-08-07 13:00:19', '', 0, 'https://wpthemetestdata.wordpress.com/?p=674', 0, 'post', '', 0),
(1164, 1, '2013-04-09 11:20:39', '2013-04-09 18:20:39', 'This post is drafted and not published yet.\n\nIt should not be displayed by the theme.', 'Draft', '', 'draft', 'closed', 'closed', '', '', '', '', '2013-04-09 11:20:39', '2013-04-09 18:20:39', '', 0, 'http://wptest.io/demo/?p=922', 0, 'post', '', 0),
(1168, 1, '2012-01-04 09:38:05', '2012-01-04 16:38:05', 'This content, comments, pingbacks, and trackbacks should not be visible until the password is entered.', 'Template: Password Protected (the password is \"enter\")', '', 'publish', 'closed', 'closed', 'enter', 'template-password-protected', '', '', '2012-01-04 09:38:05', '2012-01-04 16:38:05', '', 0, 'https://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/', 0, 'post', '', 1),
(1169, 1, '2009-09-05 09:00:23', '2009-09-05 16:00:23', 'This post has no title, but it still must link to the single post view somehow.\n\nThis is typically done by placing the permalink on the post date.', '', '', 'publish', 'closed', 'closed', '', 'edge-case-no-title', '', '', '2009-09-05 09:00:23', '2009-09-05 16:00:23', '', 0, 'https://wpthemetestdata.wordpress.com/2007/09/04/14/', 0, 'post', '', 0),
(1170, 1, '2009-08-06 09:39:56', '2009-08-06 16:39:56', '', 'Edge Case: No Content', '', 'publish', 'closed', 'closed', '', 'edge-case-no-content', '', '', '2009-08-06 09:39:56', '2009-08-06 16:39:56', '', 0, 'https://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/', 0, 'post', '', 1),
(1171, 1, '2012-01-08 10:00:20', '2012-01-08 17:00:20', 'Post Page 1\n\n<!--nextpage-->\n\nPost Page 2\n\n<!--nextpage-->\n\nPost Page 3', 'Template: Paginated', '', 'publish', 'closed', 'closed', '', 'template-paginated', '', '', '2012-01-08 10:00:20', '2012-01-08 17:00:20', '', 0, 'https://noeltest.wordpress.com/?p=188', 0, 'post', '', 0),
(1173, 1, '2013-01-05 10:00:49', '2013-01-05 17:00:49', 'Verify that:\n<ul>\n <li>The post title renders the word \"with\" in <em>italics</em> and the word \"markup\" in <strong>bold</strong> (and \"up\" is <sup>super</sup>script).</li>\n <li><strong>The post title markup should be removed from the browser window / tab.</strong></li>\n</ul>', 'Markup: Title <em>With</em> <b>Mark<sup>up</sup></b>', '', 'publish', 'closed', 'closed', '', 'markup-title-with-markup', '', '', '2013-01-05 10:00:49', '2013-01-05 17:00:49', '', 0, 'http://wptest.io/demo/?p=861', 0, 'post', '', 0),
(1174, 1, '2013-01-05 11:00:20', '2013-01-05 18:00:20', 'Putting special characters in the title should have no adverse effect on the layout or functionality.\n\nSpecial characters in the post title have been known to cause issues with JavaScript when it is minified, especially in the admin when editing the post itself (ie. issues with metaboxes, media upload, etc.).\n<h2>Latin Character Tests</h2>\nThis is a test to see if the fonts used in this theme support basic Latin characters.\n<table>\n<tbody>\n<tr>\n<td>!</td>\n<td>\"</td>\n<td>#</td>\n<td>$</td>\n<td>%</td>\n<td>&amp;</td>\n<td>\'</td>\n<td>(</td>\n<td>)</td>\n<td>*</td>\n</tr>\n<tr>\n<td>+</td>\n<td>,</td>\n<td>-</td>\n<td>.</td>\n<td>/</td>\n<td>0</td>\n<td>1</td>\n<td>2</td>\n<td>3</td>\n<td>4</td>\n</tr>\n<tr>\n<td>5</td>\n<td>6</td>\n<td>7</td>\n<td>8</td>\n<td>9</td>\n<td>:</td>\n<td>;</td>\n<td>&gt;</td>\n<td>=</td>\n<td>&lt;</td>\n</tr>\n<tr>\n<td>?</td>\n<td>@</td>\n<td>A</td>\n<td>B</td>\n<td>C</td>\n<td>D</td>\n<td>E</td>\n<td>F</td>\n<td>G</td>\n<td>H</td>\n</tr>\n<tr>\n<td>I</td>\n<td>J</td>\n<td>K</td>\n<td>L</td>\n<td>M</td>\n<td>N</td>\n<td>O</td>\n<td>P</td>\n<td>Q</td>\n<td>R</td>\n</tr>\n<tr>\n<td>S</td>\n<td>T</td>\n<td>U</td>\n<td>V</td>\n<td>W</td>\n<td>X</td>\n<td>Y</td>\n<td>Z</td>\n<td>[</td>\n<td>\\</td>\n</tr>\n<tr>\n<td>]</td>\n<td>^</td>\n<td>_</td>\n<td>`</td>\n<td>a</td>\n<td>b</td>\n<td>c</td>\n<td>d</td>\n<td>e</td>\n<td>f</td>\n</tr>\n<tr>\n<td>g</td>\n<td>h</td>\n<td>i</td>\n<td>j</td>\n<td>k</td>\n<td>l</td>\n<td>m</td>\n<td>n</td>\n<td>o</td>\n<td>p</td>\n</tr>\n<tr>\n<td>q</td>\n<td>r</td>\n<td>s</td>\n<td>t</td>\n<td>u</td>\n<td>v</td>\n<td>w</td>\n<td>x</td>\n<td>y</td>\n<td>z</td>\n</tr>\n<tr>\n<td>{</td>\n<td>|</td>\n<td>}</td>\n<td>~</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>', 'Markup: Title With Special Characters ~`!@#$%^&*()-_=+{}[]/\\;:\'\"?,.>', '', 'publish', 'closed', 'closed', '', 'title-with-special-characters', '', '', '2013-01-05 11:00:20', '2013-01-05 18:00:20', '', 0, 'http://wptest.io/demo/?p=867', 0, 'post', '', 0),
(1175, 1, '2009-10-05 12:00:59', '2009-10-05 19:00:59', '<h2>Title should not overflow the content area</h2>\n\nA few things to check for:\n<ul>\n <li>Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.</li>\n <li>Check the browser window / tab title.</li>\n <li>If you are a plugin or widget developer, check that this text does not break anything.</li>\n</ul>\n\nThe following CSS properties will help you support non-breaking text.\n\n<pre>-ms-word-wrap: break-word;\nword-wrap: break-word;</pre>\n&nbsp;', 'Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu', '', 'publish', 'closed', 'closed', '', 'title-should-not-overflow-the-content-area', '', '', '2009-10-05 12:00:59', '2009-10-05 19:00:59', '', 0, 'http://wptest.io/demo/?p=877', 0, 'post', '', 0),
(1176, 1, '2013-01-09 09:00:39', '2013-01-09 16:00:39', '<h3>Default</h3>\nThis is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me.\n<h3>Left Align</h3>\n<p style=\"text-align:left;\">This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it\'s views. It\'s favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.</p>\n\n<h3>Center Align</h3>\n<p style=\"text-align:center;\">This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.</p>\n\n<h3>Right Align</h3>\n<p style=\"text-align:right;\">This is a paragraph. It is right aligned. It is a bit more conservative in it\'s views. It\'s prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it\'s a pretty good shot from at least four or five football fields away. Dead on. So boss.</p>\n\n<h3>Justify Align</h3>\n<p style=\"text-align:justify;\">This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it\'s place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.</p>', 'Markup: Text Alignment', '', 'publish', 'closed', 'closed', '', 'markup-text-alignment', '', '', '2013-01-09 09:00:39', '2013-01-09 16:00:39', '', 0, 'http://wptest.io/demo/?p=895', 0, 'post', '', 0),
(1177, 1, '2013-01-10 20:15:40', '2013-01-11 03:15:40', 'Welcome to image alignment! The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let\'s get started.\n\nOn the topic of alignment, it should be noted that users can choose from the options of <em>None</em>, <em>Left</em>, <em>Right, </em>and <em>Center</em>. In addition, they also get the options of <em>Thumbnail</em>, <em>Medium</em>, <em>Large</em> &amp; <em>Fullsize</em>. Be sure to try this page in RTL mode and it should look the same as LTR. \n<p><img class=\"size-full wp-image-906 aligncenter\" title=\"Image Alignment 580x300\" alt=\"Image Alignment 580x300\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg\" width=\"580\" height=\"300\" /></p>\nThe image above happens to be <em><strong>centered</strong></em>.\n\n<img class=\"size-full wp-image-904 alignleft\" title=\"Image Alignment 150x150\" alt=\"Image Alignment 150x150\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg\" width=\"150\" height=\"150\" /> The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is <em><strong>left aligned</strong></em>. \n\nAs you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we\'ll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it\'s thang. Mission accomplished!\n\nAnd now for a <em><strong>massively large image</strong></em>. It also has <em><strong>no alignment</strong></em>.\n\n<img class=\"alignnone wp-image-907\" title=\"Image Alignment 1200x400\" alt=\"Image Alignment 1200x400\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg\" width=\"1200\" height=\"400\" />\n\nThe image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.\n\n<img class=\"aligncenter wp-image-907\" title=\"Image Alignment 1200x400\" alt=\"Image Alignment 1200x400\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg\" width=\"1200\" height=\"400\" />\n\nAnd we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.\n\n<img class=\"size-full wp-image-905 alignright\" title=\"Image Alignment 300x200\" alt=\"Image Alignment 300x200\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg\" width=\"300\" height=\"200\" />\n\nAnd now we\'re going to shift things to the <em><strong>right align</strong></em>. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don\'t care what the left aligned image says, you look great. Don\'t let anyone else tell you differently.\n\nIn just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right.\n\nAnd just when you thought we were done, we\'re going to do them all over again with captions!\n\n[caption id=\"attachment_906\" align=\"aligncenter\" width=\"580\"]<img class=\"size-full wp-image-906 \" title=\"Image Alignment 580x300\" alt=\"Image Alignment 580x300\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg\" width=\"580\" height=\"300\" /> Look at 580x300 getting some <a title=\"Image Settings\" href=\"https://en.support.wordpress.co
(1178, 1, '2013-01-11 20:22:19', '2013-01-12 03:22:19', '<strong>Headings</strong>\n<h1>Header one</h1>\n<h2>Header two</h2>\n<h3>Header three</h3>\n<h4>Header four</h4>\n<h5>Header five</h5>\n<h6>Header six</h6>\n<h2>Blockquotes</h2>\nSingle line blockquote:\n<blockquote>Stay hungry. Stay foolish.</blockquote>\nMulti line blockquote with a cite reference:\n<blockquote cite=\"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote\"><p>The <strong>HTML <code>&lt;blockquote&gt;</code> Element</strong> (or <em>HTML Block Quotation Element</em>) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see <a href=\"https://developer.mozilla.org/en-US/docs/HTML/Element/blockquote#Notes\">Notes</a> for how to change it). A URL for the source of the quotation may be given using the <strong>cite</strong> attribute, while a text representation of the source can be given using the <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/cite\" title=\"The HTML Citation Element &lt;cite&gt; represents a reference to a creative work. It must include the title of a work or a URL reference, which may be in an abbreviated form according to the conventions used for the addition of citation metadata.\"><code>&lt;cite&gt;</code></a> element.</p></blockquote>\n<cite>multiple contributors</cite> - MDN HTML element reference - blockquote\n<h2>Tables</h2>\n<table>\n<thead>\n<tr>\n<th>Employee</th>\n<th>Salary</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<th><a href=\"http://example.org/\">John Doe</a></th>\n<td>$1</td>\n<td>Because that\'s all Steve Jobs needed for a salary.</td>\n</tr>\n<tr>\n<th><a href=\"http://example.org/\">Jane Doe</a></th>\n<td>$100K</td>\n<td>For all the blogging she does.</td>\n</tr>\n<tr>\n<th><a href=\"http://example.org/\">Fred Bloggs</a></th>\n<td>$100M</td>\n<td>Pictures are worth a thousand words, right? So Jane x 1,000.</td>\n</tr>\n<tr>\n<th><a href=\"http://example.org/\">Jane Bloggs</a></th>\n<td>$100B</td>\n<td>With hair like that?! Enough said...</td>\n</tr>\n</tbody>\n</table>\n<h2>Definition Lists</h2>\n<dl><dt>Definition List Title</dt><dd>Definition list division.</dd><dt>Startup</dt><dd>A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.</dd><dt>#dowork</dt><dd>Coined by Rob Dyrdek and his personal body guard Christopher \"Big Black\" Boykins, \"Do Work\" works as a self motivator, to motivating your friends.</dd><dt>Do It Live</dt><dd>I\'ll let Bill O\'Reilly will <a title=\"We\'ll Do It Live\" href=\"https://www.youtube.com/watch?v=O_HyZ5aW76c\">explain</a> this one.</dd></dl>\n<h2>Unordered Lists (Nested)</h2>\n<ul>\n <li>List item one\n<ul>\n <li>List item one\n<ul>\n <li>List item one</li>\n <li>List item two</li>\n <li>List item three</li>\n <li>List item four</li>\n</ul>\n</li>\n <li>List item two</li>\n <li>List item three</li>\n <li>List item four</li>\n</ul>\n</li>\n <li>List item two</li>\n <li>List item three</li>\n <li>List item four</li>\n</ul>\n<h2>Ordered List (Nested)</h2>\n<ol start=\"8\">\n <li>List item one -start at 8\n<ol>\n <li>List item one\n<ol reversed=\"reversed\">\n <li>List item one -reversed attribute</li>\n <li>List item two</li>\n <li>List item three</li>\n <li>List item four</li>\n</ol>\n</li>\n <li>List item two</li>\n <li>List item three</li>\n <li>List item four</li>\n</ol>\n</li>\n <li>List item two</li>\n <li>List item three</li>\n <li>List item four</li>\n</ol>\n<h2>HTML Tags</h2>\nThese supported tags come from the WordPress.com code <a title=\"Code\" href=\"https://en.support.wordpress.com/code/\">FAQ</a>.\n\n<strong>Address Tag</strong>\n\n<address>1 Infinite Loop\nCupertino, CA 95014\nUnited States</address><strong>Anchor Tag (aka. Link)</strong>\n\nThis is an example of a <a title=\"WordPress Foundation\" href=\"https://wordpressfoundation.org/\">link</a>.\n\n<strong>Abbreviation Tag</strong>\n\nThe abbreviation <abbr title=\"Seriously\">srsly</abbr> stands for \"seriously\".\n\n<strong>Acrony
(1179, 1, '2011-03-15 15:47:16', '2011-03-15 22:47:16', 'https://twitter.com/nacin/status/319508408669708289\n\nThis post tests WordPress\' <a title=\"Twitter Embeds\" href=\"https://en.support.wordpress.com/twitter/twitter-embeds/\" target=\"_blank\" rel=\"noopener\">Twitter Embeds</a> feature.', 'Media: Twitter Embeds', '', 'publish', 'closed', 'closed', '', 'media-twitter-embeds', '', '', '2011-03-15 15:47:16', '2011-03-15 22:47:16', '', 0, 'http://wptest.io/demo/?p=1027', 0, 'post', '', 0),
(1241, 1, '2012-01-07 07:07:21', '2012-01-07 14:07:21', 'This is a sticky post.\n\nThere are a few things to verify:\n<ul>\n <li>The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the <code>.sticky</code> class if you are using the <a title=\"WordPress post_class() Function\" href=\"https://developer.wordpress.org/reference/functions/post_class/\" target=\"_blank\" rel=\"noopener\">post_class()</a> function to generate your post classes, which is a best practice.</li>\n <li>They should show at the very top of the blog index page, even though they could be several posts back chronologically.</li>\n <li>They should still show up again in their chronologically correct postion in time, but without the sticky indicator.</li>\n <li>If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.</li>\n</ul>', 'Template: Sticky', '', 'publish', 'closed', 'closed', '', 'template-sticky', '', '', '2012-01-07 07:07:21', '2012-01-07 14:07:21', '', 0, 'http://wptest.io/demo/?p=1241', 0, 'post', '', 0),
(1446, 1, '2012-03-14 09:49:22', '2012-03-14 16:49:22', 'This is the post content. It should be displayed in place of the auto-generated excerpt in single-page views. Archive-index pages should display an auto-generated excerpt of this content. Depending on Theme-defined filters, the length of the auto-generated excerpt will vary from Theme-to-Theme. The default length for auto-generated excerpts is 55 words, so to test the excerpt auto-generation, this post must have more than 55 words.\n\nBe sure to test the formatting of the auto-generated excerpt, to ensure that it doesn\'t create any layout problems. Also, ensure that any filters applied to the excerpt, such as <code>excerpt_length</code> and <code>excerpt_more</code>, display properly.', 'Template: Excerpt (Generated)', '', 'publish', 'closed', 'closed', '', 'template-excerpt-generated', '', '', '2012-03-14 09:49:22', '2012-03-14 16:49:22', '', 0, 'https://wpthemetestdata.wordpress.com/?p=1446', 0, 'post', '', 0),
(1724, 2, '2018-10-20 20:03:48', '2018-10-21 03:03:48', '<!-- wp:paragraph -->\n<p>There are many different ways to use the web besides a mouse and a pair of eyes. Users navigate for example with a keyboard only or with their voice. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All the functionality, including menus, links and forms should work using a <strong>keyboard only</strong>. This is essential for all assistive technology to work properly. The only way to test this, at the moment, is manually. The best time to test this is during development.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>How to keyboard test:</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tab through your pages, links and forms to do the following tests:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Confirm that all links can be reached and activated via keyboard, including any in dropdown submenus.</li><li>Confirm that all links get a visible focus indicator (e.g., a border highlight).</li><li>Confirm that all <a href=\"https://make.wordpress.org/accessibility/handbook/best-practices/markup/the-css-class-screen-reader-text/\">visually hidden links</a> (e.g. <a href=\"https://make.wordpress.org/accessibility/handbook/best-practices/markup/skip-links/\">skip links</a>) become visible when in focus.</li><li>Confirm that all form input fields and buttons can be accessed and used via keyboard.</li><li>Confirm that all interactions, buttons, and other controls can be triggered via keyboard — any action you can complete with a mouse must also be performable via keyboard.</li><li>Confirm that focus doesnt move in unexpected ways around the page.</li><li>Confirm that using shift+tab to move backwards works as well.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Resources</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><a href=\"https://make.wordpress.org/accessibility/handbook/\">The Make WordPress Accessibility Handbook </a><ul><li><a href=\"https://make.wordpress.org/accessibility/handbook/test-for-web-accessibility/\">Test for web accessibility</a></li></ul></li><li><a href=\"https://webaim.org/techniques/keyboard/\">Keyboard Accessibility</a> by WebAIM</li><li><a href=\"http://rianrietveld.com/2016/05/10/keyboard/\">Workshop keyboard accessibility</a></li><li><a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/required/\">Theme review accessibility-ready requirements: Keyboard Navigation</a></li></ul>\n<!-- /wp:list -->', 'Keyboard navigation', '', 'publish', 'closed', 'closed', '', 'keyboard-navigation', '', '', '2018-10-20 20:03:48', '2018-10-21 03:03:48', '', 0, 'https://wpthemetestdata.wordpress.com/?p=1724', 0, 'post', '', 0),
(1725, 1, '2010-07-25 19:40:01', '2010-07-26 02:40:01', 'This site is using the standard WordPress Theme Unit Test Data for content. The Theme Unit Test is a series of posts and pages that match up with a checklist on the WordPress codex. You can use the data and checklist together to test your theme. It is recommended that you test your theme with the Theme Unit Test before submitting your theme to the WordPress.org theme directory.\n\n<h2>WordPress Theme Development Resources</h2>\n\n<ol>\n <li>See <a href=\"https://developer.wordpress.org/themes/\">the WordPress Theme Developer Handbook</a> for examples of best practices.</li>\n <li>See <a href=\"https://developer.wordpress.org/reference/\">the WordPress Code Reference</a> for more information about WordPress\' functions, classes, methods, and hooks.</li>\n <li>See <a href=\"https://codex.wordpress.org/Theme_Unit_Test\">Theme Unit Test</a> for a robust test suite for your Theme and get the latest version of the test data you see here.</li>\n <li>See <a href=\"https://developer.wordpress.org/themes/release/\">Releasing Your Theme</a> for a guide to submitting your Theme to the <a href=\"https://wordpress.org/themes/\">Theme Directory</a>.</li>\n</ol>', 'About The Tests', '', 'publish', 'closed', 'closed', '', 'about', '', '', '2010-07-25 19:40:01', '2010-07-26 02:40:01', '', 0, 'https://wpthemetestdata.wordpress.com/about/', 1, 'page', '', 0),
(1726, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 'Pages', '', 'publish', 'closed', 'closed', '', 'pages', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/pages/', 2, 'nav_menu_item', '', 0),
(1727, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 'Categories', '', 'publish', 'closed', 'closed', '', 'categories', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/categories/', 10, 'nav_menu_item', '', 0),
(1728, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', 'Posts in this category test markup tags and styles.', '', '', 'publish', 'closed', 'closed', '', '1728', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 21, 'nav_menu_item', '', 0),
(1729, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', 'Posts in this category test post formats.', '', '', 'publish', 'closed', 'closed', '', '1729', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 24, 'nav_menu_item', '', 0),
(1730, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', 'Posts in this category test unpublished posts.', '', '', 'publish', 'closed', 'closed', '', '1730', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 28, 'nav_menu_item', '', 0),
(1731, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 'Depth', '', 'publish', 'closed', 'closed', '', 'depth', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/depth/', 29, 'nav_menu_item', '', 0),
(1732, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 'Level 01', '', 'publish', 'closed', 'closed', '', 'level-01', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/level-01/', 30, 'nav_menu_item', '', 0),
(1733, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 'Level 02', '', 'publish', 'closed', 'closed', '', 'level-02', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/level-02/', 31, 'nav_menu_item', '', 0),
(1734, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 'Level 03', '', 'publish', 'closed', 'closed', '', 'level-03', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/level-03/', 32, 'nav_menu_item', '', 0),
(1735, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 'Level 04', '', 'publish', 'closed', 'closed', '', 'level-04', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/level-04/', 33, 'nav_menu_item', '', 0),
(1736, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 'Level 05', '', 'publish', 'closed', 'closed', '', 'level-05', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/level-05/', 34, 'nav_menu_item', '', 0),
(1737, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 'Level 06', '', 'publish', 'closed', 'closed', '', 'level-06', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/level-06/', 35, 'nav_menu_item', '', 0),
(1738, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 'Level 07', '', 'publish', 'closed', 'closed', '', 'level-07', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/level-07/', 36, 'nav_menu_item', '', 0),
(1739, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 'Level 08', '', 'publish', 'closed', 'closed', '', 'level-08', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/level-08/', 37, 'nav_menu_item', '', 0),
(1740, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 'Level 09', '', 'publish', 'closed', 'closed', '', 'level-09', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/level-09/', 38, 'nav_menu_item', '', 0),
(1741, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 'Level 10', '', 'publish', 'closed', 'closed', '', 'level-10', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/level-10/', 39, 'nav_menu_item', '', 0),
(1742, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 'Advanced', '', 'publish', 'closed', 'closed', '', 'advanced', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/advanced/', 40, 'nav_menu_item', '', 0),
(1743, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', 'Custom Menu Description', 'Menu Description', '', 'publish', 'closed', 'closed', '', 'menu-description', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/menu-description/', 44, 'nav_menu_item', '', 0),
(1744, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 'Menu Title Attribute', 'Custom Title Attribute', 'publish', 'closed', 'closed', '', 'menu-title-attribute', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/menu-title-attribute/', 41, 'nav_menu_item', '', 0),
(1745, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 'Menu CSS Class', '', 'publish', 'closed', 'closed', '', 'menu-css-class', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/menu-css-class/', 42, 'nav_menu_item', '', 0),
(1746, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 'New Window / Tab', '', 'publish', 'closed', 'closed', '', 'new-window-tab', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/new-window-tab/', 43, 'nav_menu_item', '', 0),
(1747, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 'twitter.com', '', 'publish', 'closed', 'closed', '', 'twitter-com', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/twitter-com/', 1, 'nav_menu_item', '', 0);
INSERT INTO `perf_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1748, 1, '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 'facebook.com', '', 'publish', 'closed', 'closed', '', 'facebook-com', '', '', '2022-01-24 10:18:28', '2022-01-24 10:18:28', '', 0, 'http://localhost:8080/wordpress/2022/01/24/facebook-com/', 2, 'nav_menu_item', '', 0),
(1749, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 'github.com', '', 'publish', 'closed', 'closed', '', 'github-com', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/github-com/', 3, 'nav_menu_item', '', 0),
(1750, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 'instagram.com', '', 'publish', 'closed', 'closed', '', 'instagram-com', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/instagram-com/', 5, 'nav_menu_item', '', 0),
(1751, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 'linkedin.com', '', 'publish', 'closed', 'closed', '', 'linkedin-com', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/linkedin-com/', 4, 'nav_menu_item', '', 0),
(1752, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1752', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 2, 'nav_menu_item', '', 0),
(1753, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1753', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 3, 'nav_menu_item', '', 0),
(1754, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1754', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 1725, 'http://localhost:8080/wordpress/2022/01/24/', 4, 'nav_menu_item', '', 0),
(1755, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1755', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 1725, 'http://localhost:8080/wordpress/2022/01/24/', 5, 'nav_menu_item', '', 0),
(1756, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1756', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 1725, 'http://localhost:8080/wordpress/2022/01/24/', 6, 'nav_menu_item', '', 0),
(1757, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1757', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 7, 'nav_menu_item', '', 0),
(1758, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1758', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 2, 'nav_menu_item', '', 0),
(1759, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1759', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 3, 'nav_menu_item', '', 0),
(1760, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1760', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 4, 'nav_menu_item', '', 0),
(1761, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1761', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 1725, 'http://localhost:8080/wordpress/2022/01/24/', 7, 'nav_menu_item', '', 0),
(1762, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1762', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 1725, 'http://localhost:8080/wordpress/2022/01/24/', 8, 'nav_menu_item', '', 0),
(1763, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1763', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 1725, 'http://localhost:8080/wordpress/2022/01/24/', 9, 'nav_menu_item', '', 0),
(1764, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1764', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 10, 'nav_menu_item', '', 0),
(1765, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1765', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 11, 'nav_menu_item', '', 0),
(1766, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1766', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 12, 'nav_menu_item', '', 0),
(1767, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1767', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 17, 'nav_menu_item', '', 0),
(1768, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1768', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 2, 'nav_menu_item', '', 0),
(1769, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1769', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 3, 'nav_menu_item', '', 0),
(1770, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1770', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 4, 'nav_menu_item', '', 0),
(1771, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1771', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 1725, 'http://localhost:8080/wordpress/2022/01/24/', 7, 'nav_menu_item', '', 0),
(1772, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1772', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 1725, 'http://localhost:8080/wordpress/2022/01/24/', 8, 'nav_menu_item', '', 0),
(1773, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1773', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 1725, 'http://localhost:8080/wordpress/2022/01/24/', 9, 'nav_menu_item', '', 0),
(1774, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1774', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 10, 'nav_menu_item', '', 0),
(1775, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1775', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 11, 'nav_menu_item', '', 0),
(1776, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1776', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 12, 'nav_menu_item', '', 0),
(1777, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1777', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/', 17, 'nav_menu_item', '', 0),
(1778, 2, '2018-11-01 07:10:43', '2018-11-01 07:10:43', '<!-- wp:paragraph -->\n<p>The Common category includes the following blocks:<em> Paragraph, image, headings, list, gallery, quote, audio, cover, video.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The paragraph block is the default block type.&nbsp; It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This paragraph is left aligned.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p class=\"has-text-align-right\"><em>This italic paragraph is right aligned.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"dropCap\":true,\"fontSize\":\"medium\"} -->\n<p class=\"has-drop-cap has-medium-font-size\"><strong>Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">This paragraph is centered. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">This paragraph has something important to say:&nbsp; It has a large font size, which defaults to 36px.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"customFontSize\":46} -->\n<p style=\"font-size:46px\">The huge text size defaults to 46px, but the size can be customized.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"very-light-gray\",\"customBackgroundColor\":\"#cf2e2e\"} -->\n<p style=\"background-color:#cf2e2e\" class=\"has-text-color has-background has-very-light-gray-color\">This paragraph is colorful, with a red background and white text (maybe). Colored blocks should have a high enough contrast, so that the text is readable. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"customTextColor\":\"#1e0566\"} -->\n<p style=\"color:#1e0566\" class=\"has-text-color\"><strong>Below this block, you will see a single image with a circle mask applied.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":968,\"sizeSlug\":\"full\",\"className\":\"is-style-circle-mask\"} -->\n<figure class=\"wp-block-image size-full is-style-circle-mask\"><img src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg\" alt=\"Image Alignment 150x150\" class=\"wp-image-968\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":1} -->\n<h1>H1 Heading</h1>\n<!-- /wp:heading -->\n\n<!-- wp:heading -->\n<h2>H2 Heading</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>H3 Heading</h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>H4 Heading</h4>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":5} -->\n<h5>H5 Heading</h5>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":6} -->\n<h6>H6 Heading</h6>\n<!-- /wp:heading -->\n\n<!-- wp:heading -->\n<h2>Ordered list</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list {\"ordered\":true,\"start\":0} -->\n<ol start=\"0\"><li>The software should be licensed under the&nbsp;<a href=\"http://www.gnu.org/copyleft/gpl.html\">GNU Public License</a>.</li><li>The software should be freely available to anyone to use for any purpose, and without permission.</li><li>The software should be open to modifications.<ol><li>Any modifications should be freely distributable at no cost and without permission from its creators.</li></ol></li><li>The software should provide a framework for translation to make it globally accessible to speakers of all languages.</li><li>The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Unordered list</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list
(1779, 2, '2018-11-01 06:03:22', '2018-11-01 06:03:22', '<!-- wp:paragraph -->\n<p>The formatting category includes the following blocks:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:code -->\n<pre class=\"wp-block-code\"><code>The code block starts with\n&lt;!-- wp:code -->\n&lt;?php echo \'Hello World\'; ?>\n</code></pre>\n<!-- /wp:code -->\n\n<p>The classic block can have <em>almost</em> anything in it.</p>\n<hr />\n<h6>a heading</h6>\n\n<!-- wp:html -->\n<div style=\"width: 45%\">The custom HTML block lets you put HTML that isn\'t configured like blocks in it. (this div has a width of 45%)</div>\n<!-- /wp:html -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">The preformatted block.<br><br>The Road Not Taken<br><br>Robert Frost <br>Two roads diverged in a yellow wood,<br>And sorry I could not travel both (\\_/) <br>And be one traveler, long I stood (=\'.\'=) <br>And looked down one as far as I could (\")_(\") <br>To where it bent in the undergrowth; <br><br>Then took the other, as just as fair, <br>And having perhaps the better claim, |\\_/| <br>Because it was grassy and wanted wear; / @ @ \\ <br>Though as for that the passing there ( &gt; º &lt; ) <br>Had worn them really about the same, `&gt;&gt;x&lt;&lt;´ <br> / O \\ <br>And both that morning equally lay <br>In leaves no step had trodden black. <br>Oh, I kept the first for another day! <br>Yet knowing how way leads on to way, <br>I doubted if I should ever come back. <br>I shall be telling this with a sigh <br>Somewhere ages and ages hence: <br>Two roads diverged in a wood, and I— <br>I took the one less traveled by, <br>And that has made all the difference. <br><br><br><br>and here\'s a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;<br></pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>The pull quote can be aligned or wide or neither.</p><cite>Theme Reviewer</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table class=\"\"><tbody><tr><td>The table block</td><td>This is the default style.</td></tr><tr><td></td><td>The cell next to this is empty.</td></tr><tr><td>Cell #5<br></td><td>Cell #6</td></tr></tbody></table></figure>\n<!-- /wp:table -->\n\n<!-- wp:table {\"hasFixedLayout\":true,\"className\":\"is-style-stripes\"} -->\n<figure class=\"wp-block-table is-style-stripes\"><table class=\"has-fixed-layout\"><tbody><tr><td>This is the striped style.</td><td>This row should have a background color.</td></tr><tr><td>The cell next to this is empty.</td><td><br><br></td></tr><tr><td></td><td>This table has fixed width table cells.<br></td></tr><tr><td><br>Make sure that the text wraps correctly.<br><br></td><td></td></tr></tbody></table></figure>\n<!-- /wp:table -->\n\n<!-- wp:verse -->\n<pre class=\"wp-block-verse\">The Verse block<br><br>A block for haiku? <br> Why not? <br> Blocks for all the things!</pre>\n<!-- /wp:verse -->', 'Block category: Formatting', '', 'publish', 'open', 'open', '', 'blocks-formatting', '', '', '2018-11-01 06:03:22', '2018-11-01 06:03:22', '', 0, 'https://wpthemetestdata.wordpress.com/?p=1732', 0, 'post', '', 0),
(1780, 2, '2018-11-01 06:08:25', '2018-11-01 06:08:25', '<!-- wp:group {\"customBackgroundColor\":\"#d8f6ec\"} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#d8f6ec\"><div class=\"wp-block-group__inner-container\"><!-- wp:paragraph -->\n<p>The Layout Elements category includes the following blocks: <em>Group, Button, Columns, Media &amp; Text, separator, spacer, read more, and page break.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This group block has a light green background color.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\">A button</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph -->\n<p>The read more block should be right below this text, but only on list pages of themes that show the full content. It won\'t show on the single page or on themes showing excerpts.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:more -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:columns {\"className\":\"has-4-columns\"} -->\n<div class=\"wp-block-columns has-4-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>The columns:</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Column two.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Column three.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Column four.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:media-text {\"mediaId\":757,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg\" alt=\"Boardwalk\" class=\"wp-image-757\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Media &amp;Text</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For displaying media and text next to each other. By default, the media is to the left.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:media-text {\"align\":\"full\",\"customBackgroundColor\":\"#ebf5fe\",\"mediaPosition\":\"right\",\"mediaId\":755,\"mediaType\":\"image\",\"isStackedOnMobile\":true} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right has-background is-stacked-on-mobile\" style=\"background-color:#ebf5fe\"><figure class=\"wp-block-media-text__media\"><img src=\"https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg\" alt=\"Golden Gate Bridge\" class=\"wp-image-755\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">This time our block is full width, and the image is to the right.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The background color is a pale blue.&nbsp;</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p>Test to make sure that the editor and the front match.&nbsp;To test the <em>Stack on mobile </em>setting, reduce the browser window width.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The control these settings, the block uses the css classes \"has-media-on-the-right\" and \"is-stacked-on-mobile\".</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The separator has three styles: default, wide line, and dots.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:separator {\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator is-style-wide\"/>\n<!-- /wp:separator -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-s
(1781, 2, '2018-11-01 06:18:46', '2018-11-01 06:18:46', '\n <!-- wp:paragraph -->\n<p>This post tests various embed blocks:</p>\n<!-- /wp:paragraph -->\n \n<!-- wp:core-embed/twitter {\"url\":\"https://twitter.com/WordPress/status/1057136472321613824\",\"type\":\"rich\",\"providerNameSlug\":\"twitter\",\"align\":\"wide\",\"className\":\"\"} -->\n<figure class=\"wp-block-embed-twitter alignwide wp-block-embed is-type-rich is-provider-twitter\"><div class=\"wp-block-embed__wrapper\">\nhttps://twitter.com/WordPress/status/1057136472321613824\n</div><figcaption>Twitter,&nbsp; wide width</figcaption></figure>\n<!-- /wp:core-embed/twitter -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://youtu.be/ex8fMxXJDJw\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://youtu.be/ex8fMxXJDJw\n</div><figcaption>YouTube<br></figcaption></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:core-embed/facebook {\"url\":\"https://www.facebook.com/6427302910/posts/10156380423617911/\",\"type\":\"rich\",\"providerNameSlug\":\"facebook\",\"className\":\"\"} -->\n<figure class=\"wp-block-embed-facebook wp-block-embed is-type-rich is-provider-facebook\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.facebook.com/6427302910/posts/10156380423617911/\n</div></figure>\n<!-- /wp:core-embed/facebook -->\n\n<!-- wp:core-embed/instagram {\"url\":\"https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet\\u0026igshid=1hcxphic7p9e2\",\"type\":\"rich\",\"providerNameSlug\":\"instagram\",\"className\":\"\"} -->\n<figure class=\"wp-block-embed-instagram wp-block-embed is-type-rich is-provider-instagram\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&amp;igshid=1hcxphic7p9e2\n</div></figure>\n<!-- /wp:core-embed/instagram -->\n\n<!-- wp:core-embed/wordpress-tv {\"url\":\"https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/\",\"type\":\"video\",\"providerNameSlug\":\"\",\"align\":\"full\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-wordpress-tv alignfull wp-block-embed is-type-video wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/\n</div><figcaption>WordPress TV, full width<br></figcaption></figure>\n<!-- /wp:core-embed/wordpress-tv -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->', 'Block category: Embeds', '', 'publish', 'open', 'open', '', 'blocks-embeds', '', '', '2018-11-01 06:18:46', '2018-11-01 06:18:46', '', 0, 'https://wpthemetestdata.wordpress.com/?p=1738', 0, 'post', '', 0),
(1782, 2, '2018-11-01 06:14:47', '2018-11-01 06:14:47', '\n <!-- wp:paragraph -->\n<p>The shortcode widget:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:shortcode -->\n[gallery columns=2 ids=\"770,771\"]\n<!-- /wp:shortcode -->\n\n<!-- wp:paragraph -->\n<p>The Archive Widget:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:archives {\"className\":\"extraclass\",\"showPostCounts\":true} /-->\n\n<!-- wp:paragraph -->\n<p>The same Archive widget but as a dropdown:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:archives {\"displayAsDropdown\":true,\"showPostCounts\":true} /-->\n\n<!-- wp:calendar /-->\n\n<!-- wp:paragraph -->\n<p>The Category widget block has an additional option for showing category hierarchies:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:categories {\"displayAsDropdown\":true,\"showHierarchy\":true,\"showPostCounts\":true} /-->\n\n<!-- wp:paragraph -->\n<p>The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:latest-comments {\"commentsToShow\":4} /-->\n\n<!-- wp:paragraph -->\n<p>Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:latest-comments {\"commentsToShow\":2,\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /-->\n\n<!-- wp:paragraph -->\n<p>And here is the Latest Posts widget in the list view, with dates:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:latest-posts {\"displayPostDate\":true} /-->\n\n<!-- wp:paragraph -->\n<p>Grid view, now sorted from A -Z.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:latest-posts {\"postLayout\":\"grid\",\"order\":\"asc\",\"orderBy\":\"title\"} /-->\n\n<!-- wp:paragraph -->\n<p>You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:latest-posts {\"categories\":\"6\",\"postsToShow\":10,\"displayPostDate\":true,\"postLayout\":\"grid\",\"columns\":5} /-->\n\n<!-- wp:paragraph -->\n<p>Search widget:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:search /-->\n\n<!-- wp:paragraph -->\n<p>Tag Cloud widget:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:tag-cloud /-->\n\n<!-- wp:paragraph -->\n<p>RSS Feed widget:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:rss {\"feedURL\":\"https://make.wordpress.org/themes/feed/\"} /-->\n ', 'Block category: Widgets', '', 'publish', 'open', 'open', '', 'blocks-widgets', '', '', '2018-11-01 06:14:47', '2018-11-01 06:14:47', '', 0, 'https://wpthemetestdata.wordpress.com/?p=1736', 0, 'post', '', 0),
(1783, 2, '2018-11-02 12:10:00', '2018-11-02 12:10:00', '<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is the <strong>second</strong> column. It should align next to the first column. Reduce the browser window width to test the responsiveness.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is the second column block. It has <strong>3</strong> columns.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Paragraph 2 is in the middle.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Paragraph 3 is in the last column.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p> The third column block has <strong>4</strong> columns. Make sure that all the text is visible and that it is not cut off. </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Now the columns are getting narrower.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>The margins between the columns should be wide enough,</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>so that the content of the columns does not run into or overlap each other.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Column one.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Column two.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Column three.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Column four.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Column <strong>five</strong>.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Below is a column block with six columns, and no alignment:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Column one.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Column two.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Column three.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Column four.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div
(1784, 2, '2018-11-03 12:25:00', '2018-11-03 12:25:00', '\n <!-- wp:cover {\"url\":\"https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg\",\"align\":\"left\",\"id\":761} -->\n<div class=\"wp-block-cover has-background-dim alignleft\" style=\"background-image:url(https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg)\"><p class=\"wp-block-cover-text\">This is a left aligned cover block with a background image.</p></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph -->\n<p>The cover block lets you add text on top of images or videos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This blocktype has several alignment options, and you can also align or center the text inside the block.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The background image can be fixed and you can change its opacity and add an overlay color.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Make sure that the text wraps correctly over the image, and that text markup and alignments are working.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The next image should have a pink overlay color, the text should be bold and aligned to the left:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:cover {\"url\":\"https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg\",\"align\":\"center\",\"contentAlign\":\"left\",\"id\":611,\"overlayColor\":\"pale-pink\"} -->\n<div class=\"wp-block-cover has-pale-pink-background-color has-background-dim has-left-content aligncenter\" style=\"background-image:url(https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg)\"><p class=\"wp-block-cover-text\"><strong>A center aligned cover image block, with a left aligned text.</strong></p></div>\n<!-- /wp:cover -->\n\n<!-- wp:cover {\"url\":\"https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg\",\"align\":\"full\",\"id\":759,\"hasParallax\":true,\"dimRatio\":20} -->\n<div class=\"wp-block-cover has-background-dim-20 has-background-dim has-parallax alignfull\" style=\"background-image:url(https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg)\"><p class=\"wp-block-cover-text\">This is a full width cover block with a fixed background image with a 20% opacity.</p></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Make sure that all the text is readable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:cover {\"url\":\"https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg\",\"align\":\"wide\",\"id\":758} -->\n<div class=\"wp-block-cover has-background-dim alignwide\" style=\"background-image:url(https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg)\"><p class=\"wp-block-cover-text\">Our last cover image block has a wide width.</p></div>\n<!-- /wp:cover -->\n\n<!-- wp:cover {\"url\":\"https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov\",\"align\":\"wide\",\"id\":1800,\"backgroundType\":\"video\"} -->\n<div class=\"wp-block-cover has-background-dim alignwide\"><video class=\"wp-block-cover__video-background\" autoplay muted loop src=\"https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov\"></video><p class=\"wp-block-cover-text\">This is a wide cover block with a video background.</p></div>\n<!-- /wp:cover -->\n\n<!-- wp:cover {\"url\":\"https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov\",\"align\":\"center\",\"id\":1800,\"backgroundType\":\"video\"} -->\n<div class=\"wp-block-cover has-background-dim aligncenter\"><video class=\"wp-block-cover__video-background\" autoplay muted loop src=\"https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov\"></video><p class=\"wp-block-cover-text\">Compare the video and image blocks.<br>This block is centered.</p></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph -->\n<p>The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:cover {\"url\":\"https:/
(1785, 2, '2018-11-03 13:20:00', '2018-11-03 13:20:00', '<!-- wp:paragraph -->\n<p>Button blocks are not semantically <em>buttons</em>, but links inside a styled div.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">If you do not add a link, a link tag without an anchor will be used.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button {\"align\":\"left\"} -->\n<div class=\"wp-block-button alignleft\"><a class=\"wp-block-button__link\">Left aligned<br></a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph -->\n<p>Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button {\"align\":\"center\"} -->\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\">A centered button with <br>more than <br>one line of text</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph -->\n<p>Buttons have three styles:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\">Rounded</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link\">Outline<br></a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"className\":\"is-style-squared\"} -->\n<div class=\"wp-block-button is-style-squared\"><a class=\"wp-block-button__link\">Square<br></a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph -->\n<p>If the theme has a custom color palette, test that background color and text color settings work correctly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/gutenberg/handbook/extensibility/theme-support/#block-color-palette\">Read more about the color palettes in the handbook.</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph -->\n<p>Now lets test how buttons display together with large texts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\">Right aligned<br></a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph -->\n<p>Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button {\"align\":\"left\"} -->\n<div class=\"wp-block-button alignleft\"><a class=\"wp-block-button__link\">Left aligned<br></a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph -->\n<p>Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.</p>\n<!-- /wp:paragraph -->', 'Block: Button', '', 'publish', 'open', 'open', '', 'block-button', '', '', '2018-11-03 13:20:00', '2018-11-03 13:20:00', '', 0, 'https://wpthemetestdata.wordpress.com/?p=1747', 0, 'post', '', 0);
INSERT INTO `perf_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1786, 2, '2018-11-01 15:28:56', '2018-11-01 15:28:56', '<!-- wp:paragraph -->\n<p>The quote block has two styles,&nbsp;regular:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Gutenberg is more than an editor.</p><cite>The Gutenberg Team<br></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>and large:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote {\"className\":\"is-style-large\"} -->\n<blockquote class=\"wp-block-quote is-style-large\"><p>Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men! </p><cite><br><em>Johannes Gutenberg</em><br></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>The quote blocks themselves have no alignments but the text can be aligned, bold, italic, and linked:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote {\"align\":\"right\",\"className\":\"extraclass\"} -->\n<blockquote class=\"wp-block-quote has-text-align-right extraclass\"><p><strong><em><a href=\"https://developer.wordpress.org/block-editor/developers/themes/theme-support/\">Right</a></em></strong></p><cite>Theme Review<br></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>In addition to the quote block, we also have the <em>pull quote</em>, with a regular and a solid color style.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can change the color of the border and the text with the regular style:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:pullquote {\"customMainColor\":\"#b80000\",\"textColor\":\"light-gray\"} -->\n<figure class=\"wp-block-pullquote\" style=\"border-color:#b80000\"><blockquote class=\"has-text-color has-light-gray-color\"><p>In addition to the quote block, we also have the pull quote.</p><cite>Theme Reviewer</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:paragraph -->\n<p>Or change the background color and text color with the solid color style:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:pullquote {\"mainColor\":\"cyan-bluish-gray\",\"textColor\":\"very-dark-gray\",\"className\":\"has-cyan-bluish-gray-background-color is-style-solid-color\"} -->\n<figure class=\"wp-block-pullquote has-background has-cyan-bluish-gray-background-color is-style-solid-color\"><blockquote class=\"has-text-color has-very-dark-gray-color\"><p>a solid color style</p><cite>Theme Reviewer</cite></blockquote></figure>\n<!-- /wp:pullquote -->', 'Block: Quote', '', 'publish', 'open', 'open', '', 'block-quotes', '', '', '2018-11-01 15:28:56', '2018-11-01 15:28:56', '', 0, 'https://wpthemetestdata.wordpress.com/?p=1749', 0, 'post', '', 0),
(1787, 2, '2018-11-03 03:55:09', '2018-11-03 03:55:09', '<!-- wp:paragraph -->\n<p>Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Below is a three column gallery at full width, with cropped images.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[],\"linkTo\":\"attachment\",\"className\":\"alignfull\"} -->\n<figure class=\"wp-block-gallery columns-3 is-cropped alignfull\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><a href=\"https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/\"><img src=\"https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg\" alt=\"canola\" data-id=\"611\" data-link=\"https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/\" class=\"wp-image-611\"/></a><figcaption class=\"blocks-gallery-item__caption\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, \net adipiscing orci velit quis magna.</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><a href=\"https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/\"><img src=\"https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg\" alt=\"Sunburst Over River\" data-id=\"756\" data-link=\"https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/\" class=\"wp-image-756\"/></a><figcaption class=\"blocks-gallery-item__caption\">Sunburst over the Clinch River, \nSouthwest Virginia.</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><a href=\"https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc02085/\"><img src=\"https://wpthemetestdata.files.wordpress.com/2008/06/dsc02085.jpg\" alt=\"Orange Iris\" data-id=\"763\" data-link=\"https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc02085/\" class=\"wp-image-763\"/></a><figcaption class=\"blocks-gallery-item__caption\">Orange Iris</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><a href=\"https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/\"><img src=\"https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg\" alt=\"Boardwalk\" data-id=\"757\" data-link=\"https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/\" class=\"wp-image-757\"/></a><figcaption class=\"blocks-gallery-item__caption\">Boardwalk at Westport, WA</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><a href=\"https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/\"><img src=\"https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg\" alt=\"Bell on Wharf\" data-id=\"754\" data-link=\"https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/\" class=\"wp-image-754\"/></a><figcaption class=\"blocks-gallery-item__caption\">Bell on wharf in San \nFrancisco</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><a href=\"https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/\"><img src=\"https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg\" alt=\"Huatulco Coastline\" data-id=\"770\" data-link=\"https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/\" class=\"wp-image-770\"/></a><figcaption class=\"blocks-gallery-item__caption\">Coastline in Huatulco, Oaxaca, Mexico</figcaption></figure></li></ul><figcaption class=\"blocks-gallery-caption\"><em>(gallery caption)</em> 3 column, full width, cropped, <strong>linked to attachment pages</strong></figcaption></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:gallery {\"ids\":[],\"columns\":2,\"linkTo\":\"media\",\"className\":\"alignleft extraclass\"} -->\n<figure class=\"wp-block-galle
INSERT INTO `perf_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1788, 2, '2018-11-03 15:20:00', '2018-11-03 15:20:00', '<!-- wp:paragraph -->\n<p>Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic <em>Markup: Image Alignment</em> post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let\'s get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On the topic of alignment, it should be noted that users can choose from the options of <em>None</em>, <em>Left</em>, <em>Right, </em>and <em>Center</em>. If the theme has added support for <em>align wide</em>,&nbsp;images can also be <em>wide</em> and <em>full width</em>. Be sure to test this page in RTL mode.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":906,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg\" alt=\"Image Alignment 580x300\" class=\"wp-image-906\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>The image above happens to be <em><strong>centered</strong></em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":904,\"align\":\"left\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft\"><img src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg\" alt=\"Image Alignment 150x150\" class=\"wp-image-904\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is <em><strong>left aligned</strong></em>. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we\'ll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it\'s thang. Mission accomplished!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>And now for a <em><strong>massively large image</strong></em>. It also has <em><strong>no alignment</strong></em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":907} -->\n<figure class=\"wp-block-image\"><img src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg\" alt=\"Image Alignment 1200x400\" class=\"wp-image-907\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":905,\"align\":\"right\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright\"><img src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg\" alt=\"Image Alignment 300x200\" class=\"wp-image-905\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>And now we\'re going to shift things to the <em><strong>right align</strong></em>. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don\'t care what the left aligned image says, you look great. Don\'t let anyone else tell you differently.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting p
(1809, 2, '2020-02-14 13:31:00', '2020-02-14 10:31:00', 'Typography tests for Greek Ελληνική σελίδα 1ου επιπέδου και δείγμα τυπογραφίας.\n\n<strong>Headings Επικεφαλίδες</strong>\n<h1>Επικεφαλίδα 1 Header one</h1>\n<h2>Επικεφαλίδα 2 Header two</h2>\n<h3>Επικεφαλίδα 3 Header three</h3>\n<h4>Επικεφαλίδα 2 Header four</h4>\n<h5>Επικεφαλίδα 5 Header five</h5>\n<h6>Επικεφαλίδα 6Header six</h6>\n<h2>Παράθεση άλλου Blockquotes</h2>\nSingle line blockquote: Μια γραμμή\n<blockquote>Πάντα να είναι περίεργος.</blockquote>\nΠολλές γραμμέ με αναφορά Multi line blockquote with a cite reference:\n<blockquote>Το <strong>HTML <code>&lt;blockquote&gt;</code> Element</strong> (ή <em>HTML Block Quotation Element</em>) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε <a href=\"https://developer.mozilla.org/en-US/docs/HTML/Element/blockquote#Notes\">Σημειώσεις</a> για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του <strong>cite</strong> attribute, μπλα, μπλα <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/cite\"><code>&lt;cite&gt;</code></a> .</blockquote>\n<cite>multiple contributors - MDN HTML element reference - blockquote</cite>\n<h2>Πίνακες Tables</h2>\n<table>\n<thead>\n<tr>\n<th>Υπάλληλος Employee</th>\n<th>Μισθός Salary</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<th><a href=\"http://example.org/\">Τάδε κάποιος</a></th>\n<td>$1</td>\n<td>Γιατί τόσα χρειάζεται για να ζήσει</td>\n</tr>\n<tr>\n<th><a href=\"http://example.org/\">Jane Doe</a></th>\n<td>$100K</td>\n<td>For all the blogging she does.</td>\n</tr>\n<tr>\n<th><a href=\"http://example.org/\">Fred Bloggs</a></th>\n<td>$100M</td>\n<td>Pictures are worth a thousand words, right? So Jane x 1,000.</td>\n</tr>\n<tr>\n<th><a href=\"http://example.org/\">Jane Bloggs</a></th>\n<td>$100B</td>\n<td>With hair like that?! Enough said...</td>\n</tr>\n</tbody>\n</table>\n<h2>Λίστες Definition Lists</h2>\n<dl>\n <dt>Τίτλος λίστας Definition List Title</dt>\n <dd>Υποδιαίρεση λίστας Definition list division.</dd>\n</dl>\n<h2>Λίστα με κουκίδες Unordered Lists (Nested)</h2>\n<ul>\n <li>Πρώτο στοιχείο List item one\n<ul>\n <li>Στοιχείο πρώτο List item one\n<ul>\n <li>Στοιχείο λίστα ένα List item one</li>\n <li>Στοιχείο λίστας δύο List item two</li>\n</ul>\n</li>\n <li>Στοιχείο δεύτερο -item two</li>\n</ul>\n</li>\n <li>Στοιχειο δύο List item two</li>\n</ul>\n<h2>Αριθμημένη λίστα(Nested)</h2>\n<ol start=\"8\">\n <li>Στοιχειο ξεκινά με 8-start at 8\n<ol>\n <li>Στοιχείο λίστας ενα List item one\n<ol>\n <li>Στοιχείο λίστας ενα  -reversed attribute</li>\n <li>Στοιχείο λίστας δύο</li>\n</ol>\n</li>\n <li>Δεύτερο στοιχείο</li>\n</ol>\n</li>\n <li>Στοιχείο δύο</li>\n</ol>\n<h2>Ετικέττες HTML Tags</h2>\n<strong>Διεύθυνση Address Tag</strong>\n\n<address>1 Απέραντη διαδρομή Infinite Loop\nΑπλωπολή , ΤΚ 95014\nΕλλάδα</address><strong>Αγκυρωση Anchor Tag (aka. Link)</strong>\n\nΠάραδειγμα <a title=\"WordPress Foundation\" href=\"https://wordpressfoundation.org/\">συνδέσμου</a>.\n\n<strong>Συντομογραφία Abbreviation Tag</strong>\n\nΗ συντομογραφία <abbr title=\"Και τα λοιπά\">κτλ</abbr> σημαίνει \"Και τα λοιπά\".\n\n<strong>Ακρωνύμιο Acronym Tag</strong>\n\nΤο ακρωνύμιο <acronym title=\"Κύριος\">κυρ</acronym> σημαίνει
(1811, 2, '2020-02-14 13:31:47', '2020-02-14 10:31:47', 'Σελίδα 2ου επιπέδου - Second level page\n', 'Επίπεδο 2 -Second Greek level', '', 'publish', 'closed', 'closed', '', '%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2', '', '', '2020-02-14 13:31:47', '2020-02-14 10:31:47', '', 1809, 'https://wpthemetestdata.wordpress.com/?page_id=1811', 0, 'page', '', 0),
(1813, 2, '2020-02-14 13:32:50', '2020-02-14 10:32:50', '', 'Επίπεδο 3', '', 'publish', 'closed', 'closed', '', '%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3', '', '', '2020-02-14 13:32:50', '2020-02-14 10:32:50', '', 1811, 'https://wpthemetestdata.wordpress.com/?page_id=1813', 0, 'page', '', 0),
(1814, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1814', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 1725, 'http://localhost:8080/wordpress/2022/01/24/1814/', 8, 'nav_menu_item', '', 0),
(1815, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1815', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 1725, 'http://localhost:8080/wordpress/2022/01/24/1815/', 9, 'nav_menu_item', '', 0),
(1816, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1816', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 1725, 'http://localhost:8080/wordpress/2022/01/24/1816/', 5, 'nav_menu_item', '', 0),
(1817, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1817', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 1725, 'http://localhost:8080/wordpress/2022/01/24/1817/', 6, 'nav_menu_item', '', 0),
(1818, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1818', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 173, 'http://localhost:8080/wordpress/2022/01/24/1818/', 13, 'nav_menu_item', '', 0),
(1819, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1819', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 173, 'http://localhost:8080/wordpress/2022/01/24/1819/', 14, 'nav_menu_item', '', 0),
(1820, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1820', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 174, 'http://localhost:8080/wordpress/2022/01/24/1820/', 15, 'nav_menu_item', '', 0),
(1821, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1821', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 174, 'http://localhost:8080/wordpress/2022/01/24/1821/', 16, 'nav_menu_item', '', 0),
(1822, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1822', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/1822/', 18, 'nav_menu_item', '', 0),
(1823, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1823', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/1823/', 19, 'nav_menu_item', '', 0),
(1824, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1824', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 1725, 'http://localhost:8080/wordpress/2022/01/24/1824/', 5, 'nav_menu_item', '', 0),
(1825, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1825', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 1725, 'http://localhost:8080/wordpress/2022/01/24/1825/', 6, 'nav_menu_item', '', 0),
(1826, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1826', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 173, 'http://localhost:8080/wordpress/2022/01/24/1826/', 13, 'nav_menu_item', '', 0),
(1827, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1827', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 173, 'http://localhost:8080/wordpress/2022/01/24/1827/', 14, 'nav_menu_item', '', 0),
(1828, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1828', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 174, 'http://localhost:8080/wordpress/2022/01/24/1828/', 15, 'nav_menu_item', '', 0),
(1829, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1829', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 174, 'http://localhost:8080/wordpress/2022/01/24/1829/', 16, 'nav_menu_item', '', 0),
(1830, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1830', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/1830/', 18, 'nav_menu_item', '', 0),
(1831, 1, '2022-01-24 10:18:29', '2022-01-24 10:18:29', ' ', '', '', 'publish', 'closed', 'closed', '', '1831', '', '', '2022-01-24 10:18:29', '2022-01-24 10:18:29', '', 0, 'http://localhost:8080/wordpress/2022/01/24/1831/', 19, 'nav_menu_item', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `perf_termmeta`
--
CREATE TABLE `perf_termmeta` (
`meta_id` bigint UNSIGNED NOT NULL,
`term_id` bigint UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `perf_terms`
--
CREATE TABLE `perf_terms` (
`term_id` bigint UNSIGNED NOT NULL,
`name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`term_group` bigint NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `perf_terms`
--
INSERT INTO `perf_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'aciform', 'aciform', 0),
(3, 'antiquarianism', 'antiquarianism', 0),
(4, 'arrangement', 'arrangement', 0),
(5, 'asmodeus', 'asmodeus', 0),
(6, 'Block', 'block', 0),
(7, 'Blogroll', 'blogroll', 0),
(8, 'broder', 'broder', 0),
(9, 'buying', 'buying', 0),
(10, 'Cat A', 'cat-a', 0),
(11, 'Cat B', 'cat-b', 0),
(12, 'Cat C', 'cat-c', 0),
(13, 'championship', 'championship', 0),
(14, 'chastening', 'chastening', 0),
(15, 'Classic', 'classic', 0),
(16, 'clerkship', 'clerkship', 0),
(17, 'disinclination', 'disinclination', 0),
(18, 'disinfection', 'disinfection', 0),
(19, 'dispatch', 'dispatch', 0),
(20, 'echappee', 'echappee', 0),
(21, 'Edge Case', 'edge-case-2', 0),
(22, 'enphagy', 'enphagy', 0),
(23, 'equipollent', 'equipollent', 0),
(24, 'fatuity', 'fatuity', 0),
(25, 'Foo A', 'foo-a', 0),
(26, 'Foo Parent', 'foo-parent', 0),
(27, 'gaberlunzie', 'gaberlunzie', 0),
(28, 'illtempered', 'illtempered', 0),
(29, 'insubordination', 'insubordination', 0),
(30, 'lender', 'lender', 0),
(31, 'Markup', 'markup', 0),
(32, 'Media', 'media-2', 0),
(33, 'monosyllable', 'monosyllable', 0),
(34, 'packthread', 'packthread', 0),
(35, 'palter', 'palter', 0),
(36, 'papilionaceous', 'papilionaceous', 0),
(37, 'Parent', 'parent', 0),
(38, 'Parent Category', 'parent-category', 0),
(39, 'personable', 'personable', 0),
(40, 'Post Formats', 'post-formats', 0),
(41, 'propylaeum', 'propylaeum', 0),
(42, 'pustule', 'pustule', 0),
(43, 'quartern', 'quartern', 0),
(44, 'scholarship', 'scholarship', 0),
(45, 'selfconvicted', 'selfconvicted', 0),
(46, 'showshoe', 'showshoe', 0),
(47, 'sloyd', 'sloyd', 0),
(48, 'sub', 'sub', 0),
(49, 'sublunary', 'sublunary', 0),
(50, 'tamtam', 'tamtam', 0),
(51, 'Template', 'template-2', 0),
(52, 'Unpublished', 'unpublished', 0),
(53, 'weakhearted', 'weakhearted', 0),
(54, 'ween', 'ween', 0),
(55, 'wellhead', 'wellhead', 0),
(56, 'wellintentioned', 'wellintentioned', 0),
(57, 'whetstone', 'whetstone', 0),
(58, 'years', 'years', 0),
(59, 'Child 1', 'child-1', 0),
(60, 'Child 2', 'child-2', 0),
(61, 'Child Category 01', 'child-category-01', 0),
(62, 'Child Category 02', 'child-category-02', 0),
(63, 'Child Category 03', 'child-category-03', 0),
(64, 'Child Category 04', 'child-category-04', 0),
(65, 'Child Category 05', 'child-category-05', 0),
(66, 'Foo A', 'foo-a-foo-parent', 0),
(67, 'Grandchild Category', 'grandchild-category', 0),
(68, '8BIT', '8bit', 0),
(69, 'alignment', 'alignment-2', 0),
(70, 'Articles', 'articles', 0),
(71, 'aside', 'aside', 0),
(72, 'audio', 'audio', 0),
(73, 'captions', 'captions-2', 0),
(74, 'categories', 'categories', 0),
(75, 'chat', 'chat', 0),
(76, 'chattels', 'chattels', 0),
(77, 'cienaga', 'cienaga', 0),
(78, 'claycold', 'claycold', 0),
(79, 'Codex', 'codex', 0),
(80, 'comments', 'comments-2', 0),
(81, 'content περιεχόμενο', 'content-2', 0),
(82, 'crushing', 'crushing', 0),
(83, 'css', 'css', 0),
(84, 'depo', 'depo', 0),
(85, 'dinarchy', 'dinarchy', 0),
(86, 'doolie', 'doolie', 0),
(87, 'dowork', 'dowork', 0),
(88, 'edge case', 'edge-case', 0),
(89, 'embeds', 'embeds-2', 0),
(90, 'energumen', 'energumen', 0),
(91, 'ephialtes', 'ephialtes', 0),
(92, 'eudiometer', 'eudiometer', 0),
(93, 'excerpt', 'excerpt-2', 0),
(94, 'Fail', 'fail', 0),
(95, 'featured image', 'featured-image', 0),
(96, 'figuriste', 'figuriste', 0),
(97, 'filler', 'filler', 0),
(98, 'formatting', 'formatting-2', 0),
(99, 'FTW', 'ftw', 0),
(100, 'Fun', 'fun', 0),
(101, 'gallery', 'gallery', 0),
(102, 'goes here', 'goes-here', 0),
(103, 'habergeon', 'habergeon', 0),
(104, 'hapless', 'hapless', 0),
(105, 'hartshorn', 'hartshorn', 0),
(106, 'hostility impregnability', 'hostility-impregnability', 0),
(107, 'html', 'html', 0),
(108, 'image', 'image', 0),
(109, 'impropriation', 'impropriation', 0),
(110, 'is', 'is', 0),
(111, 'jetpack', 'jetpack-2', 0),
(112, 'knave', 'knave', 0),
(113, 'layout', 'layout', 0),
(114, 'link', 'link', 0),
(115, 'lists', 'lists-2', 0),
(116, 'lorem', 'lorem', 0),
(117, 'Love', 'love', 0),
(118, 'markup', 'markup-2', 0),
(119, 'media', 'media', 0),
(120, 'misinformed', 'misinformed', 0),
(121, 'moil', 'moil', 0),
(122, 'more', 'more', 0),
(123, 'mornful', 'mornful', 0),
(124, 'Mothership', 'mothership', 0),
(125, 'Must Read', 'mustread', 0),
(126, 'Nailed It', 'nailedit', 0),
(127, 'outlaw', 'outlaw', 0),
(128, 'pagination', 'pagination', 0),
(129, 'pamphjlet', 'pamphjlet', 0),
(130, 'password', 'password-2', 0),
(131, 'Pictures', 'pictures', 0),
(132, 'pingbacks', 'pingbacks-2', 0),
(133, 'pneumatics', 'pneumatics', 0),
(134, 'portly portreeve', 'portly-portreeve', 0),
(135, 'post', 'post', 0),
(136, 'Post Formats', 'post-formats', 0),
(137, 'precipitancy', 'precipitancy', 0),
(138, 'privation', 'privation', 0),
(139, 'programme', 'programme', 0),
(140, 'psychological', 'psychological', 0),
(141, 'puncher', 'puncher', 0),
(142, 'quote', 'quote', 0),
(143, 'ramose', 'ramose', 0),
(144, 'read more', 'read-more', 0),
(145, 'readability', 'readability', 0),
(146, 'renegade', 'renegade', 0),
(147, 'retrocede', 'retrocede', 0),
(148, 'shortcode', 'shortcode', 0),
(149, 'stagnation unhorsed', 'stagnation-unhorsed', 0),
(150, 'standard', 'standard-2', 0),
(151, 'status', 'status', 0),
(152, 'sticky', 'sticky-2', 0),
(153, 'Success', 'success', 0),
(154, 'Swagger', 'swagger', 0),
(155, 'Tag A', 'tag-a', 0),
(156, 'Tag B', 'tag-b', 0),
(157, 'Tag C', 'tag-c', 0),
(158, 'tag1', 'tag1', 0),
(159, 'tag2', 'tag2', 0),
(160, 'tag3', 'tag3', 0),
(161, 'Tags', 'tags', 0),
(162, 'template', 'template', 0),
(163, 'text', 'text', 0),
(164, 'the man', 'the-man', 0),
(165, 'thunderheaded', 'thunderheaded', 0),
(166, 'tiled', 'tiled', 0),
(167, 'title', 'title', 0),
(168, 'trackbacks', 'trackbacks-2', 0),
(169, 'twitter', 'twitter-2', 0),
(170, 'unculpable', 'unculpable', 0),
(171, 'Unseen', 'unseen', 0),
(172, 'video', 'video', 0),
(173, 'videopress', 'videopress', 0),
(174, 'withered brandnew', 'withered-brandnew', 0),
(175, 'WordPress', 'wordpress', 0),
(176, 'wordpress.tv', 'wordpress-tv', 0),
(177, 'xanthopsia', 'xanthopsia', 0),
(178, 'All Pages', 'all-pages', 0),
(179, 'All Pages Flat', 'all-pages-flat', 0),
(180, 'Empty Menu', 'empty-menu', 0),
(181, 'Short', 'short', 0),
(182, 'Testing Menu', 'testing-menu', 0),
(183, 'Social menu', 'social-menu', 0),
(184, 'Gallery', 'post-format-gallery', 0),
(185, 'Aside', 'post-format-aside', 0),
(186, 'Chat', 'post-format-chat', 0),
(187, 'Link', 'post-format-link', 0),
(188, 'Image', 'post-format-image', 0),
(189, 'Quote', 'post-format-quote', 0),
(190, 'Status', 'post-format-status', 0),
(191, 'Video', 'post-format-video', 0),
(192, 'Audio', 'post-format-audio', 0),
(193, 'content περιεχόμενο', 'content', 0),
(194, 'Columns', 'columns', 0);
-- --------------------------------------------------------
--
-- Table structure for table `perf_term_relationships`
--
CREATE TABLE `perf_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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `perf_term_relationships`
--
INSERT INTO `perf_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(358, 15, 0),
(358, 40, 0),
(358, 136, 0),
(358, 145, 0),
(358, 150, 0),
(555, 15, 0),
(555, 40, 0),
(555, 101, 0),
(555, 136, 0),
(555, 148, 0),
(555, 184, 0),
(559, 15, 0),
(559, 40, 0),
(559, 71, 0),
(559, 136, 0),
(559, 185, 0),
(562, 15, 0),
(562, 40, 0),
(562, 75, 0),
(562, 136, 0),
(562, 186, 0),
(565, 15, 0),
(565, 40, 0),
(565, 114, 0),
(565, 136, 0),
(565, 187, 0),
(568, 15, 0),
(568, 40, 0),
(568, 108, 0),
(568, 136, 0),
(568, 188, 0),
(575, 15, 0),
(575, 40, 0),
(575, 136, 0),
(575, 142, 0),
(575, 189, 0),
(579, 15, 0),
(579, 40, 0),
(579, 136, 0),
(579, 151, 0),
(579, 190, 0),
(582, 15, 0),
(582, 40, 0),
(582, 89, 0),
(582, 136, 0),
(582, 172, 0),
(582, 176, 0),
(582, 191, 0),
(587, 15, 0),
(587, 40, 0),
(587, 72, 0),
(587, 136, 0),
(587, 148, 0),
(587, 192, 0),
(993, 1, 0),
(993, 15, 0),
(993, 51, 0),
(993, 81, 0),
(993, 93, 0),
(993, 162, 0),
(996, 1, 0),
(996, 15, 0),
(996, 51, 0),
(996, 81, 0),
(996, 144, 0),
(996, 162, 0),
(1000, 15, 0),
(1000, 21, 0),
(1000, 81, 0),
(1000, 83, 0),
(1000, 88, 0),
(1000, 115, 0),
(1000, 118, 0),
(1011, 1, 0),
(1011, 15, 0),
(1011, 51, 0),
(1011, 79, 0),
(1011, 88, 0),
(1011, 95, 0),
(1011, 108, 0),
(1011, 162, 0),
(1016, 1, 0),
(1016, 15, 0),
(1016, 51, 0),
(1016, 79, 0),
(1016, 88, 0),
(1016, 95, 0),
(1016, 108, 0),
(1016, 162, 0),
(1031, 15, 0),
(1031, 40, 0),
(1031, 101, 0),
(1031, 111, 0),
(1031, 136, 0),
(1031, 148, 0),
(1031, 166, 0),
(1031, 184, 0),
(1148, 1, 0),
(1148, 15, 0),
(1148, 51, 0),
(1148, 80, 0),
(1148, 162, 0),
(1149, 1, 0),
(1149, 15, 0),
(1149, 51, 0),
(1149, 80, 0),
(1149, 132, 0),
(1149, 162, 0),
(1149, 168, 0),
(1150, 1, 0),
(1150, 15, 0),
(1150, 51, 0),
(1150, 80, 0),
(1150, 162, 0),
(1151, 15, 0),
(1151, 21, 0),
(1151, 68, 0),
(1151, 69, 0),
(1151, 70, 0),
(1151, 73, 0),
(1151, 74, 0),
(1151, 75, 0),
(1151, 79, 0),
(1151, 80, 0),
(1151, 81, 0),
(1151, 83, 0),
(1151, 87, 0),
(1151, 88, 0),
(1151, 89, 0),
(1151, 93, 0),
(1151, 94, 0),
(1151, 95, 0),
(1151, 99, 0),
(1151, 100, 0),
(1151, 101, 0),
(1151, 107, 0),
(1151, 108, 0),
(1151, 111, 0),
(1151, 113, 0),
(1151, 114, 0),
(1151, 117, 0),
(1151, 118, 0),
(1151, 124, 0),
(1151, 125, 0),
(1151, 126, 0),
(1151, 131, 0),
(1151, 136, 0),
(1151, 142, 0),
(1151, 148, 0),
(1151, 150, 0),
(1151, 153, 0),
(1151, 154, 0),
(1151, 161, 0),
(1151, 162, 0),
(1151, 167, 0),
(1151, 169, 0),
(1151, 171, 0),
(1151, 172, 0),
(1151, 173, 0),
(1151, 175, 0),
(1151, 176, 0),
(1152, 2, 0),
(1152, 3, 0),
(1152, 4, 0),
(1152, 5, 0),
(1152, 8, 0),
(1152, 9, 0),
(1152, 10, 0),
(1152, 11, 0),
(1152, 12, 0),
(1152, 13, 0),
(1152, 14, 0),
(1152, 15, 0),
(1152, 16, 0),
(1152, 17, 0),
(1152, 18, 0),
(1152, 19, 0),
(1152, 20, 0),
(1152, 21, 0),
(1152, 22, 0),
(1152, 23, 0),
(1152, 24, 0),
(1152, 25, 0),
(1152, 26, 0),
(1152, 27, 0),
(1152, 28, 0),
(1152, 29, 0),
(1152, 30, 0),
(1152, 31, 0),
(1152, 32, 0),
(1152, 33, 0),
(1152, 34, 0),
(1152, 35, 0),
(1152, 36, 0),
(1152, 37, 0),
(1152, 38, 0),
(1152, 39, 0),
(1152, 40, 0),
(1152, 41, 0),
(1152, 42, 0),
(1152, 43, 0),
(1152, 44, 0),
(1152, 45, 0),
(1152, 46, 0),
(1152, 47, 0),
(1152, 48, 0),
(1152, 49, 0),
(1152, 50, 0),
(1152, 52, 0),
(1152, 53, 0),
(1152, 54, 0),
(1152, 55, 0),
(1152, 56, 0),
(1152, 57, 0),
(1152, 58, 0),
(1152, 59, 0),
(1152, 60, 0),
(1152, 61, 0),
(1152, 62, 0),
(1152, 63, 0),
(1152, 64, 0),
(1152, 65, 0),
(1152, 66, 0),
(1152, 67, 0),
(1152, 74, 0),
(1152, 88, 0),
(1153, 15, 0),
(1153, 52, 0),
(1153, 81, 0),
(1158, 15, 0),
(1158, 40, 0),
(1158, 108, 0),
(1158, 136, 0),
(1158, 188, 0),
(1161, 15, 0),
(1161, 40, 0),
(1161, 136, 0),
(1161, 191, 0),
(1163, 15, 0),
(1163, 40, 0),
(1163, 108, 0),
(1163, 136, 0),
(1163, 148, 0),
(1163, 188, 0),
(1164, 15, 0),
(1164, 52, 0),
(1164, 81, 0),
(1168, 1, 0),
(1168, 15, 0),
(1168, 51, 0),
(1168, 130, 0),
(1168, 162, 0),
(1169, 15, 0),
(1169, 21, 0),
(1169, 88, 0),
(1169, 113, 0),
(1169, 167, 0),
(1170, 15, 0),
(1170, 21, 0),
(1170, 81, 0),
(1170, 88, 0),
(1170, 113, 0),
(1171, 1, 0),
(1171, 15, 0),
(1171, 51, 0),
(1171, 81, 0),
(1171, 128, 0),
(1171, 162, 0),
(1173, 15, 0),
(1173, 31, 0),
(1173, 83, 0),
(1173, 107, 0),
(1173, 167, 0),
(1174, 15, 0),
(1174, 31, 0),
(1174, 107, 0),
(1174, 118, 0),
(1174, 135, 0),
(1174, 167, 0),
(1175, 15, 0),
(1175, 21, 0),
(1175, 81, 0),
(1175, 83, 0),
(1175, 88, 0),
(1175, 107, 0),
(1175, 113, 0),
(1175, 167, 0),
(1176, 15, 0),
(1176, 31, 0),
(1176, 69, 0),
(1176, 81, 0),
(1176, 83, 0),
(1176, 118, 0),
(1177, 15, 0),
(1177, 31, 0),
(1177, 69, 0),
(1177, 73, 0),
(1177, 81, 0),
(1177, 83, 0),
(1177, 108, 0),
(1177, 118, 0),
(1178, 15, 0),
(1178, 31, 0),
(1178, 81, 0),
(1178, 83, 0),
(1178, 98, 0),
(1178, 107, 0),
(1178, 118, 0),
(1179, 15, 0),
(1179, 32, 0),
(1179, 81, 0),
(1179, 89, 0),
(1179, 119, 0),
(1179, 169, 0),
(1241, 1, 0),
(1241, 15, 0),
(1241, 152, 0),
(1241, 162, 0),
(1446, 1, 0),
(1446, 15, 0),
(1446, 51, 0),
(1446, 81, 0),
(1446, 93, 0),
(1446, 162, 0),
(1724, 1, 0),
(1724, 79, 0),
(1726, 182, 0),
(1727, 182, 0),
(1728, 182, 0),
(1729, 182, 0),
(1730, 182, 0),
(1731, 182, 0),
(1732, 182, 0),
(1733, 182, 0),
(1734, 182, 0),
(1735, 182, 0),
(1736, 182, 0),
(1737, 182, 0),
(1738, 182, 0),
(1739, 182, 0),
(1740, 182, 0),
(1741, 182, 0),
(1742, 182, 0),
(1743, 182, 0),
(1744, 182, 0),
(1745, 182, 0),
(1746, 182, 0),
(1747, 183, 0),
(1748, 183, 0),
(1749, 183, 0),
(1750, 183, 0),
(1751, 183, 0),
(1752, 181, 0),
(1753, 181, 0),
(1754, 181, 0),
(1755, 181, 0),
(1756, 181, 0),
(1757, 181, 0),
(1758, 179, 0),
(1759, 179, 0),
(1760, 179, 0),
(1761, 179, 0),
(1762, 179, 0),
(1763, 179, 0),
(1764, 179, 0),
(1765, 179, 0),
(1766, 179, 0),
(1767, 179, 0),
(1768, 178, 0),
(1769, 178, 0),
(1770, 178, 0),
(1771, 178, 0),
(1772, 178, 0),
(1773, 178, 0),
(1774, 178, 0),
(1775, 178, 0),
(1776, 178, 0),
(1777, 178, 0),
(1778, 6, 0),
(1778, 89, 0),
(1778, 101, 0),
(1778, 108, 0),
(1778, 172, 0),
(1778, 193, 0),
(1779, 6, 0),
(1779, 98, 0),
(1779, 193, 0),
(1780, 6, 0),
(1780, 193, 0),
(1781, 6, 0),
(1781, 32, 0),
(1781, 89, 0),
(1781, 193, 0),
(1782, 6, 0),
(1782, 193, 0),
(1783, 6, 0),
(1783, 193, 0),
(1783, 194, 0),
(1784, 6, 0),
(1784, 108, 0),
(1785, 6, 0),
(1785, 193, 0),
(1786, 6, 0),
(1786, 193, 0),
(1787, 6, 0),
(1787, 101, 0),
(1787, 108, 0),
(1787, 193, 0),
(1787, 194, 0),
(1788, 6, 0),
(1788, 108, 0),
(1788, 193, 0),
(1814, 182, 0),
(1815, 182, 0),
(1816, 179, 0),
(1817, 179, 0),
(1818, 179, 0),
(1819, 179, 0),
(1820, 179, 0),
(1821, 179, 0),
(1822, 179, 0),
(1823, 179, 0),
(1824, 178, 0),
(1825, 178, 0),
(1826, 178, 0),
(1827, 178, 0),
(1828, 178, 0),
(1829, 178, 0),
(1830, 178, 0),
(1831, 178, 0);
-- --------------------------------------------------------
--
-- Table structure for table `perf_term_taxonomy`
--
CREATE TABLE `perf_term_taxonomy` (
`term_taxonomy_id` bigint UNSIGNED NOT NULL,
`term_id` bigint UNSIGNED NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`parent` bigint UNSIGNED NOT NULL DEFAULT '0',
`count` bigint NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `perf_term_taxonomy`
--
INSERT INTO `perf_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 13),
(2, 2, 'category', '', 0, 1),
(3, 3, 'category', '', 0, 1),
(4, 4, 'category', '', 0, 1),
(5, 5, 'category', '', 0, 1),
(6, 6, 'category', 'Items in the block category have been created with the block editor.', 0, 11),
(7, 7, 'category', '', 0, 0),
(8, 8, 'category', '', 0, 1),
(9, 9, 'category', '', 0, 1),
(10, 10, 'category', '', 0, 1),
(11, 11, 'category', '', 0, 1),
(12, 12, 'category', '', 0, 1),
(13, 13, 'category', '', 0, 1),
(14, 14, 'category', '', 0, 1),
(15, 15, 'category', 'Items in the classic category have been created with the classic editor.', 0, 37),
(16, 16, 'category', '', 0, 1),
(17, 17, 'category', '', 0, 1),
(18, 18, 'category', '', 0, 1),
(19, 19, 'category', '', 0, 1),
(20, 20, 'category', '', 0, 1),
(21, 21, 'category', 'Posts that have edge-case related tests', 0, 6),
(22, 22, 'category', '', 0, 1),
(23, 23, 'category', '', 0, 1),
(24, 24, 'category', '', 0, 1),
(25, 25, 'category', '', 0, 1),
(26, 26, 'category', '', 0, 1),
(27, 27, 'category', '', 0, 1),
(28, 28, 'category', '', 0, 1),
(29, 29, 'category', '', 0, 1),
(30, 30, 'category', '', 0, 1),
(31, 31, 'category', 'Posts in this category test markup tags and styles.', 0, 6),
(32, 32, 'category', 'Posts that have media-related tests', 0, 3),
(33, 33, 'category', '', 0, 1),
(34, 34, 'category', '', 0, 1),
(35, 35, 'category', '', 0, 1),
(36, 36, 'category', '', 0, 1),
(37, 37, 'category', '', 0, 1),
(38, 38, 'category', 'This is a parent category. It will contain child categories', 0, 1),
(39, 39, 'category', '', 0, 1),
(40, 40, 'category', 'Posts in this category test post formats.', 0, 15),
(41, 41, 'category', '', 0, 1),
(42, 42, 'category', '', 0, 1),
(43, 43, 'category', '', 0, 1),
(44, 44, 'category', '', 0, 1),
(45, 45, 'category', '', 0, 1),
(46, 46, 'category', '', 0, 1),
(47, 47, 'category', '', 0, 1),
(48, 48, 'category', '', 2, 1),
(49, 49, 'category', '', 0, 1),
(50, 50, 'category', '', 0, 1),
(51, 51, 'category', 'Posts with template-related tests', 0, 10),
(52, 52, 'category', 'Posts in this category test unpublished posts.', 0, 1),
(53, 53, 'category', '', 0, 1),
(54, 54, 'category', '', 0, 1),
(55, 55, 'category', '', 0, 1),
(56, 56, 'category', '', 0, 1),
(57, 57, 'category', '', 0, 1),
(58, 58, 'category', '', 0, 1),
(59, 59, 'category', '', 37, 1),
(60, 60, 'category', '', 59, 1),
(61, 61, 'category', 'This is a description for the Child Category 01.', 38, 1),
(62, 62, 'category', 'This is a description for the Child Category 02.', 38, 1),
(63, 63, 'category', 'This is a description for the Child Category 03.', 38, 1),
(64, 64, 'category', 'This is a description for the Child Category 04.', 38, 1),
(65, 65, 'category', 'This is a description for the Child Category 05.', 38, 1),
(66, 66, 'category', '', 26, 1),
(67, 67, 'category', 'This is a description for the Grandchild Category.', 63, 1),
(68, 68, 'post_tag', 'Tags posts about 8BIT.', 0, 1),
(69, 69, 'post_tag', '', 0, 3),
(70, 70, 'post_tag', 'Tags posts about Articles.', 0, 1),
(71, 71, 'post_tag', '', 0, 1),
(72, 72, 'post_tag', '', 0, 1),
(73, 73, 'post_tag', '', 0, 2),
(74, 74, 'post_tag', '', 0, 2),
(75, 75, 'post_tag', '', 0, 2),
(76, 76, 'post_tag', '', 0, 0),
(77, 77, 'post_tag', '', 0, 0),
(78, 78, 'post_tag', '', 0, 0),
(79, 79, 'post_tag', '', 0, 4),
(80, 80, 'post_tag', '', 0, 4),
(81, 81, 'post_tag', '', 0, 12),
(82, 82, 'post_tag', '', 0, 0),
(83, 83, 'post_tag', '', 0, 7),
(84, 84, 'post_tag', '', 0, 0),
(85, 85, 'post_tag', '', 0, 0),
(86, 86, 'post_tag', '', 0, 0),
(87, 87, 'post_tag', 'Tags posts about #dowork.', 0, 1),
(88, 88, 'post_tag', '', 0, 8),
(89, 89, 'post_tag', '', 0, 5),
(90, 90, 'post_tag', '', 0, 0),
(91, 91, 'post_tag', '', 0, 0),
(92, 92, 'post_tag', '', 0, 0),
(93, 93, 'post_tag', '', 0, 3),
(94, 94, 'post_tag', 'Tags posts about fail.', 0, 1),
(95, 95, 'post_tag', '', 0, 3),
(96, 96, 'post_tag', '', 0, 0),
(97, 97, 'post_tag', '', 0, 0),
(98, 98, 'post_tag', '', 0, 2),
(99, 99, 'post_tag', '', 0, 1),
(100, 100, 'post_tag', 'Tags posts about fun.', 0, 1),
(101, 101, 'post_tag', '', 0, 5),
(102, 102, 'post_tag', '', 0, 0),
(103, 103, 'post_tag', '', 0, 0),
(104, 104, 'post_tag', '', 0, 0),
(105, 105, 'post_tag', '', 0, 0),
(106, 106, 'post_tag', '', 0, 0),
(107, 107, 'post_tag', '', 0, 5),
(108, 108, 'post_tag', '', 0, 11),
(109, 109, 'post_tag', '', 0, 0),
(110, 110, 'post_tag', '', 0, 0),
(111, 111, 'post_tag', '', 0, 2),
(112, 112, 'post_tag', '', 0, 0),
(113, 113, 'post_tag', '', 0, 4),
(114, 114, 'post_tag', '', 0, 2),
(115, 115, 'post_tag', '', 0, 1),
(116, 116, 'post_tag', '', 0, 0),
(117, 117, 'post_tag', 'Tags posts about love.', 0, 1),
(118, 118, 'post_tag', '', 0, 6),
(119, 119, 'post_tag', '', 0, 1),
(120, 120, 'post_tag', '', 0, 0),
(121, 121, 'post_tag', '', 0, 0),
(122, 122, 'post_tag', '', 0, 0),
(123, 123, 'post_tag', '', 0, 0),
(124, 124, 'post_tag', 'Tags posts about motherships.', 0, 1),
(125, 125, 'post_tag', 'Tags posts about articles you must read.', 0, 1),
(126, 126, 'post_tag', 'Tags posts about that nailed it.', 0, 1),
(127, 127, 'post_tag', '', 0, 0),
(128, 128, 'post_tag', '', 0, 1),
(129, 129, 'post_tag', '', 0, 0),
(130, 130, 'post_tag', '', 0, 1),
(131, 131, 'post_tag', '', 0, 1),
(132, 132, 'post_tag', '', 0, 1),
(133, 133, 'post_tag', '', 0, 0),
(134, 134, 'post_tag', '', 0, 0),
(135, 135, 'post_tag', '', 0, 1),
(136, 136, 'post_tag', '', 0, 15),
(137, 137, 'post_tag', '', 0, 0),
(138, 138, 'post_tag', '', 0, 0),
(139, 139, 'post_tag', '', 0, 0),
(140, 140, 'post_tag', '', 0, 0),
(141, 141, 'post_tag', '', 0, 0),
(142, 142, 'post_tag', '', 0, 2),
(143, 143, 'post_tag', '', 0, 0),
(144, 144, 'post_tag', '', 0, 1),
(145, 145, 'post_tag', '', 0, 1),
(146, 146, 'post_tag', '', 0, 0),
(147, 147, 'post_tag', '', 0, 0),
(148, 148, 'post_tag', '', 0, 5),
(149, 149, 'post_tag', '', 0, 0),
(150, 150, 'post_tag', '', 0, 2),
(151, 151, 'post_tag', '', 0, 1),
(152, 152, 'post_tag', '', 0, 1),
(153, 153, 'post_tag', 'Tags posts about success.', 0, 1),
(154, 154, 'post_tag', 'Tags posts about swagger.', 0, 1),
(155, 155, 'post_tag', '', 0, 0),
(156, 156, 'post_tag', '', 0, 0),
(157, 157, 'post_tag', '', 0, 0),
(158, 158, 'post_tag', '', 0, 0),
(159, 159, 'post_tag', '', 0, 0),
(160, 160, 'post_tag', '', 0, 0),
(161, 161, 'post_tag', 'Tags posts about tags. #inception', 0, 1),
(162, 162, 'post_tag', '', 0, 12),
(163, 163, 'post_tag', '', 0, 0),
(164, 164, 'post_tag', '', 0, 0),
(165, 165, 'post_tag', '', 0, 0),
(166, 166, 'post_tag', '', 0, 1),
(167, 167, 'post_tag', '', 0, 5),
(168, 168, 'post_tag', '', 0, 1),
(169, 169, 'post_tag', '', 0, 2),
(170, 170, 'post_tag', '', 0, 0),
(171, 171, 'post_tag', 'Tags posts about things that cannot be unseen.', 0, 1),
(172, 172, 'post_tag', '', 0, 3),
(173, 173, 'post_tag', '', 0, 1),
(174, 174, 'post_tag', '', 0, 0),
(175, 175, 'post_tag', 'Tags posts about WordPress.', 0, 1),
(176, 176, 'post_tag', '', 0, 2),
(177, 177, 'post_tag', '', 0, 0),
(178, 178, 'nav_menu', '', 0, 18),
(179, 179, 'nav_menu', '', 0, 18),
(180, 180, 'nav_menu', '', 0, 0),
(181, 181, 'nav_menu', '', 0, 6),
(182, 182, 'nav_menu', '', 0, 23),
(183, 183, 'nav_menu', '', 0, 5),
(184, 184, 'post_format', '', 0, 2),
(185, 185, 'post_format', '', 0, 1),
(186, 186, 'post_format', '', 0, 1),
(187, 187, 'post_format', '', 0, 1),
(188, 188, 'post_format', '', 0, 3),
(189, 189, 'post_format', '', 0, 1),
(190, 190, 'post_format', '', 0, 1),
(191, 191, 'post_format', '', 0, 2),
(192, 192, 'post_format', '', 0, 1),
(193, 193, 'post_tag', '', 0, 10),
(194, 194, 'post_tag', '', 0, 2);
-- --------------------------------------------------------
--
-- Table structure for table `perf_usermeta`
--
CREATE TABLE `perf_usermeta` (
`umeta_id` bigint UNSIGNED NOT NULL,
`user_id` bigint UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `perf_usermeta`
--
INSERT INTO `perf_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'satish'),
(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, 'perf_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(13, 1, 'perf_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', ''),
(15, 1, 'show_welcome_panel', '1'),
(16, 1, 'session_tokens', 'a:1:{s:64:\"ab12ebeb95006177ff575138f19b2aae9b5aba44027d4ed8d0e0552b5e958f47\";a:4:{s:10:\"expiration\";i:1643192227;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36\";s:5:\"login\";i:1643019427;}}'),
(17, 1, 'perf_dashboard_quick_press_last_post_id', '4'),
(18, 2, 'nickname', 'Rahul'),
(19, 2, 'first_name', ''),
(20, 2, 'last_name', ''),
(21, 2, 'description', ''),
(22, 2, 'rich_editing', 'true'),
(23, 2, 'syntax_highlighting', 'true'),
(24, 2, 'comment_shortcuts', 'false'),
(25, 2, 'admin_color', 'fresh'),
(26, 2, 'use_ssl', '0'),
(27, 2, 'show_admin_bar_front', 'true'),
(28, 2, 'locale', ''),
(29, 2, 'perf_capabilities', 'a:1:{s:10:\"subscriber\";b:1;}'),
(30, 2, 'perf_user_level', '0'),
(31, 2, 'dismissed_wp_pointers', '');
-- --------------------------------------------------------
--
-- Table structure for table `perf_users`
--
CREATE TABLE `perf_users` (
`ID` bigint UNSIGNED NOT NULL,
`user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_status` int NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `perf_users`
--
INSERT INTO `perf_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'satish', '$P$BBrIGcyFZjixJAfebBS55fkd/hFiV0.', 'satish', 'satish.iitg@gmail.com', 'http://localhost:8080/wordpress', '2022-01-24 10:16:52', '', 0, 'satish'),
(2, 'Rahul', '$P$BORFiQkbJCaZcW4qZReQW.5Z0c8zqW1', 'rahul', '', '', '2022-01-24 10:18:28', '', 0, 'Rahul');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `perf_commentmeta`
--
ALTER TABLE `perf_commentmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `comment_id` (`comment_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `perf_comments`
--
ALTER TABLE `perf_comments`
ADD PRIMARY KEY (`comment_ID`),
ADD KEY `comment_post_ID` (`comment_post_ID`),
ADD KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
ADD KEY `comment_date_gmt` (`comment_date_gmt`),
ADD KEY `comment_parent` (`comment_parent`),
ADD KEY `comment_author_email` (`comment_author_email`(10));
--
-- Indexes for table `perf_links`
--
ALTER TABLE `perf_links`
ADD PRIMARY KEY (`link_id`),
ADD KEY `link_visible` (`link_visible`);
--
-- Indexes for table `perf_options`
--
ALTER TABLE `perf_options`
ADD PRIMARY KEY (`option_id`),
ADD UNIQUE KEY `option_name` (`option_name`),
ADD KEY `autoload` (`autoload`);
--
-- Indexes for table `perf_postmeta`
--
ALTER TABLE `perf_postmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `post_id` (`post_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `perf_posts`
--
ALTER TABLE `perf_posts`
ADD PRIMARY KEY (`ID`),
ADD KEY `post_name` (`post_name`(191)),
ADD KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
ADD KEY `post_parent` (`post_parent`),
ADD KEY `post_author` (`post_author`);
--
-- Indexes for table `perf_termmeta`
--
ALTER TABLE `perf_termmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `term_id` (`term_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `perf_terms`
--
ALTER TABLE `perf_terms`
ADD PRIMARY KEY (`term_id`),
ADD KEY `slug` (`slug`(191)),
ADD KEY `name` (`name`(191));
--
-- Indexes for table `perf_term_relationships`
--
ALTER TABLE `perf_term_relationships`
ADD PRIMARY KEY (`object_id`,`term_taxonomy_id`),
ADD KEY `term_taxonomy_id` (`term_taxonomy_id`);
--
-- Indexes for table `perf_term_taxonomy`
--
ALTER TABLE `perf_term_taxonomy`
ADD PRIMARY KEY (`term_taxonomy_id`),
ADD UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
ADD KEY `taxonomy` (`taxonomy`);
--
-- Indexes for table `perf_usermeta`
--
ALTER TABLE `perf_usermeta`
ADD PRIMARY KEY (`umeta_id`),
ADD KEY `user_id` (`user_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `perf_users`
--
ALTER TABLE `perf_users`
ADD PRIMARY KEY (`ID`),
ADD KEY `user_login_key` (`user_login`),
ADD KEY `user_nicename` (`user_nicename`),
ADD KEY `user_email` (`user_email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `perf_commentmeta`
--
ALTER TABLE `perf_commentmeta`
MODIFY `meta_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `perf_comments`
--
ALTER TABLE `perf_comments`
MODIFY `comment_ID` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34;
--
-- AUTO_INCREMENT for table `perf_links`
--
ALTER TABLE `perf_links`
MODIFY `link_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `perf_options`
--
ALTER TABLE `perf_options`
MODIFY `option_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=157;
--
-- AUTO_INCREMENT for table `perf_postmeta`
--
ALTER TABLE `perf_postmeta`
MODIFY `meta_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=607;
--
-- AUTO_INCREMENT for table `perf_posts`
--
ALTER TABLE `perf_posts`
MODIFY `ID` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1832;
--
-- AUTO_INCREMENT for table `perf_termmeta`
--
ALTER TABLE `perf_termmeta`
MODIFY `meta_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `perf_terms`
--
ALTER TABLE `perf_terms`
MODIFY `term_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=195;
--
-- AUTO_INCREMENT for table `perf_term_taxonomy`
--
ALTER TABLE `perf_term_taxonomy`
MODIFY `term_taxonomy_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=195;
--
-- AUTO_INCREMENT for table `perf_usermeta`
--
ALTER TABLE `perf_usermeta`
MODIFY `umeta_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=32;
--
-- AUTO_INCREMENT for table `perf_users`
--
ALTER TABLE `perf_users`
MODIFY `ID` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
COMMIT;
/*!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 */;